MRadioGroup

From HTML5 Builder
Jump to: navigation, search

The MRadioGroup component is a group of radio buttons. Only one item 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
          • Item 1 radio button (HTMLInputElement). Full web browser support. Access it with: $("#ComponentName_#").get()[0].
          • Item 1 label (HTMLLabelElement). Full web browser support. Access it with: $("label[for='ComponentName_#']").get()[0].

Client-side Events

Documented in the RPCL Reference.

Server-side Features

Properties, Methods and Events

Documented in the RPCL Reference.

See Also