CheckBoxPropertyView - shannah/CodeRAD GitHub Wiki

CheckBoxPropertyView

<radCheckBox>javadoc

Synopsis

A CheckBox component bound to a view model property.

Usage

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"
/>

Attributes

tag

References the view model property to bind to. The property should be of type boolean.

component.*

Sets properties on the embedded CheckBox component.

Examples

<define-tag name="formBottomPadding" type="boolean"/>
<radCheckBox
    tag="formBottomPadding"
    component.text="Use Form BottomPadding Editing Mode"
/>
CheckBoxPropertyView
⚠️ **GitHub.com Fallback** ⚠️