CheckBoxPropertyView - shannah/CodeRAD GitHub Wiki
<radCheckBox> • javadoc
A CheckBox component bound to a view model property.
The tag attribute specifies the view model property to bind to. Should be type boolean. The component.* attributes allow you to set properties on the actual CheckBox component, since <radCheckBox> is a container that wraps the CheckBox.
<define-tag name="formBottomPadding" type="boolean"/>
<radCheckBox
tag="formBottomPadding"
component.text="Use Form BottomPadding Editing Mode"
/>- tag
-
References the view model property to bind to. The property should be of type
boolean. - component.*
-
Sets properties on the embedded CheckBox component.