Checkbox

Introduction

Checkboxes are pretty straightforward. One thing to note is that due to some limitations with SWT, all checkboxes 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

 

 

checked (bool)

No

 

 

disabled (bool)

No

 

 

checked (bool)

No

 

 

Methods

None.

Sample Usage

<checkbox label="Option 1" command="handler.optionSelected('1')"/>