Interface PopoutRadioButtonOptions

Represents options describing how to render a radio button. See PopoutComponentFactory.radioButton.

interface PopoutRadioButtonOptions {
    checked: boolean;
    enabled?: boolean;
    name: string;
    text: string;
    tooltip?: string;
    value: any;
}

Properties

checked: boolean

Specifies whether the radio button is checked.

enabled?: boolean

Specifies whether the radio button is enabled.

1.1

name: string

Specifies the name that identifies the component.

text: string

Specifies the text to display next to the radio button.

tooltip?: string

Specifies the tooltip to display. If undefined, no tooltip is shown.

value: any

Specifies the value represented by the radio button.