MCheckBoxGroup

From HTML5 Builder
Jump to: navigation, search

The MCheckBoxGroup component is a group of checkboxes. Multiple items can be selected at a time. You can manage its items through its Items property.

Client-side Features

DOM Elements

The component generates the following client-side DOM elements:

  • Wrapper (HTMLDivElement). Full web browser support. Access it with $("#ComponentName_outer").get()[0].
    • table (HTMLTableElement). Full web browser support. Access it with: $("#ComponentName_table").get()[0].
      • tr
        • td
          • Checkbox # (HTMLInputElement). Full web browser support. Access it with: $("#ComponentName_#").get()[0].
          • Label # (HTMLLabelElement). Full web browser support. Access it with: $("label[for='ComponentName_#']").get()[0].

Replace # by the index of the target checkbox, starting with 0.

Client-side Events

Documented in the RPCL Reference.

Server-side Features

Properties, Methods and Events

Documented in the RPCL Reference.

See Also