Radio
Introduction
Radios are pretty straightforward. One thing to note is that due to some limitations with SWT, all radios in the same group need to be children of the same parent container. This limitation could be worked around with a custom implementation in SWT if needed.
Properties
Property |
Fires Events |
Possible Values |
Notes |
---|---|---|---|
command (String) |
No |
in the form of "handler.method()" |
 |
label (String) |
No |
 |
 |
value (String) |
No |
 |
|
selected (bool) |
No |
 |
 |
disabled (bool) |
No |
 |
 |
Methods
None.
Sample Usage
<radio label="Option 1" value="1" command="handler.optionSelected('1')"/>