Skip to main content

BootstrapRadioButton Class

Declaration

class BootstrapRadioButton extends BootstrapClientEdit

Remarks

IMPORTANT

Bootstrap Controls for ASP.NET Core are in maintenance mode. We don’t add new controls or develop new functionality for this product line. Our recommendation is to use the ASP.NET Core Controls suite.

Inheritance

Control
BootstrapClientEdit
BootstrapRadioButton

Methods

getChecked Method

Declaration

getChecked(): boolean

Returns

Type
boolean

getCheckState Method

Declaration

getCheckState(): string

Returns

Type
string

getText Method

Declaration

getText(): string

Returns

Type
string

off<K> Method

Declaration

off<K extends keyof BootstrapRadioButtonEventMap>(
    eventName?: K,
    callback?: (this: BootstrapRadioButton,
    args?: BootstrapRadioButtonEventMap[K]) => void
): this

Parameters

Name Type
eventName K
callback (this: BootstrapRadioButton, args?: BootstrapRadioButtonEventMap[K]) => void

Type Parameters

Name Type
K keyof

Returns

Type
this

on<K>(eventName, callback) Method

Declaration

on<K extends keyof BootstrapRadioButtonEventMap>(
    eventName: K,
    callback: (this: BootstrapRadioButton,
    args?: BootstrapRadioButtonEventMap[K]) => void
): this

Parameters

Name Type
eventName K
callback (this: BootstrapRadioButton, args?: BootstrapRadioButtonEventMap[K]) => void

Type Parameters

Name Type
K keyof

Returns

Type
this

once<K>(eventName, callback) Method

Declaration

once<K extends keyof BootstrapRadioButtonEventMap>(
    eventName: K,
    callback: (this: BootstrapRadioButton,
    args?: BootstrapRadioButtonEventMap[K]) => void
): this

Parameters

Name Type
eventName K
callback (this: BootstrapRadioButton, args?: BootstrapRadioButtonEventMap[K]) => void

Type Parameters

Name Type
K keyof

Returns

Type
this

setChecked(isChecked) Method

Declaration

setChecked(
    isChecked: boolean
): void

Parameters

Name Type
isChecked boolean

setCheckState(checkState) Method

Declaration

setCheckState(
    checkState: string
): void

Parameters

Name Type
checkState string

setText(text) Method

Declaration

setText(
    text: string
): void

Parameters

Name Type
text string