Hello all,
how do I commit all the user-settable controls on a panel in a simple way ?
I was thinking of simply iterating through all the controls and using CallCtrlCallback(...EVENT_COMMIT), but then I thought:
- what if there is no callback function ? (probably OK)
- what if the control is hidden ? I'm OK if it's still being called.
- what if it's only an indicator or it's dimmed but still has a callback function ? It shouldn't be called, but will it ?
- anything I forget ?