ComboBox and CheckBox have no IsModified()

Just realized that both of these controls do not have IsModified(), which is available for TextCtrl.

Are there any plans of having this in the near future?

If not, how does one go about to code this myself. Any hints would be much appreciated.

See you
Werner

Werner F. Bruhin wrote:

Just realized that both of these controls do not have IsModified(), which is available for TextCtrl.

Are there any plans of having this in the near future?

Not that I know of.

If not, how does one go about to code this myself. Any hints would be much appreciated.

It would have to be added to the C++ class for the various platforms and then a patch submitted to the patch manager at SF.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

I have a hard time spelling C++, so won't try to start coding in it.

Probably a dumb question, would it be possible to code this kind of functionality in Python, e.g. setting a variable to False in the TransferToWindow function of the validator and using EVT_TEXT (for ComboBox) and EVT_CHECKBOX to set the variable to True and then check it in TransferFromWindow to see if a DB update is really necessary.

See you
Werner

Robin Dunn wrote:

···

Werner F. Bruhin wrote:

Just realized that both of these controls do not have IsModified(), which is available for TextCtrl.

Are there any plans of having this in the near future?

Not that I know of.

If not, how does one go about to code this myself. Any hints would be much appreciated.

It would have to be added to the C++ class for the various platforms and then a patch submitted to the patch manager at SF.