Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

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')"/>
  • No labels