I'm setting the selection via CDateTime#setSelection(Date)
I've registered a selection listener to get notified if the user or any
other code sets the date, but the Widget does only throw SelectionEvents
if the date was changed within the widget. I think this is a bug IMHO
since it must be possible to get such types of events also if any other
code sets the selection. Hints?
This is a common rule in SWT : if you change a widget's property within your code, no even will be thrown. This was made to prevent dead locks and unnecessary events.
You should get the same behavior with every SWT widget.
--
Nicolas
This is a common rule in SWT : if you change a widget's property within your code, no even will be thrown. This was made to prevent dead locks and unnecessary events.
You should get the same behavior with every SWT widget.
--
Nicolas