Community
Participate
Working Groups
Build Identifier: When DateTimeRidget.setOutputOnly(true) is called, the ridget still can change the value of itself and the model. Reproducible: Always Steps to Reproduce: 1. Open DateTimeSubModuleController in SWT example application 2. Add dtDate.setOutputOnly(true); or to any DateTimeRidget 3. Run the example application. The date is still selectable and changeable. Also models can be updated too.
Thanks, resolved in HEAD. As a workaround: since output-only is equivalent to enabled:=false you can use ridget.setEnabled(false) instead (only for the DateTimeRidget).