Element html.form.field.CheckBox

html.form.field.BaseEditableField
  |
  +-- html.form.field.BaseSingleValueField
    |
    +-- html.form.field.CheckBox
Substitution Groups:
html.form.IFormItem

A checkbox form field.
Supported value types are: boolean or Boolean.


Attributes
optional   boolean TrueIsChecked Determines whether the checkbox is checked on true value. Default: true.

Named Children Elements
mandatory   binding.Expression Label The displayed field label.
optional   binding.Expression Tip A tip (information) associated to the field.
optional   binding.Expression Visible Determines whether this field is visible.
Default: true.
optional   binding.Expression Editable Determines whether this field is editable.
Default: true.
0 - unbounded   html.menu.IMenuItem[] FieldButtons Buttons displayed right next to the form field.
mandatory   binding.Expression Bind The expression to get (and possibly set) the associated value.
0 - unbounded   validation.IValidator[] Validators Validators associated to this field.
optional   binding.Expression OnChange Callback to trigger when the selection changes (causes the form to reload).
Should be used to implement dynamic form fields.