Element
igc-radio
Slots
default — The radio label.
helper-text — Renders content below the input.
value-missing — Renders content when the required validation fails.
custom-error — Renders content when setCustomValidity(message) is set.
invalid — Renders content when the component is in invalid state (validity.valid = false).
CSS Parts
base — The radio control base wrapper.
control — The radio input control.
label — The radio control label.

IgcRadioComponent

new IgcRadioComponent(): IgcRadioComponent

Defined in src/components/radio/radio.ts:179

Returns IgcRadioComponent

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

The disabled state of the component.

disabled: boolean

Defined in src/components/common/mixins/forms/types.ts:29

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

Sets the control into invalid state (visual state only).

invalid: boolean

Defined in src/components/common/mixins/forms/types.ts:36

The label position of the radio control.

labelPosition: ToggleLabelPosition = 'after'

Defined in src/components/radio/radio.ts:177

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

The name attribute of the control.

name: string

Defined in src/components/common/mixins/forms/types.ts:42

The tagName read-only property of the Element interface returns the tag name of the element on which it's called.

MDN Reference

tagName: "igc-radio" = 'igc-radio'

Defined in src/components/radio/radio.ts:67

get checked(): boolean

Defined in src/components/radio/radio.ts:168

Returns boolean

The checked state of the control.

set checked(value: boolean): void

Defined in src/components/radio/radio.ts:160

Parameters

  • value: boolean

Returns void

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

get defaultChecked(): boolean

Defined in src/components/common/mixins/forms/types.ts:169

Returns boolean

The initial checked state of the component.

set defaultChecked(value: boolean): void

Defined in src/components/common/mixins/forms/types.ts:168

Parameters

  • value: boolean

Returns void

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

Returns the HTMLFormElement associated with this element.

get form(): HTMLFormElement | null

Defined in src/components/common/mixins/forms/types.ts:45

Returns HTMLFormElement | null

When set, makes the component a required field for validation.

get required(): boolean

Defined in src/components/radio/radio.ts:134

Returns boolean

When set, makes the component a required field for validation.

set required(value: boolean): void

Defined in src/components/radio/radio.ts:124

Parameters

  • value: boolean

Returns void

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

A string containing the validation message of this element.

get validationMessage(): string

Defined in src/components/common/mixins/forms/types.ts:54

Returns string

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

Returns a ValidityState object which represents the different validity states the element can be in, with respect to constraint validation.

get validity(): ValidityState

Defined in src/components/common/mixins/forms/types.ts:51

Returns ValidityState

get value(): string

Defined in src/components/radio/radio.ts:150

Returns string

The value attribute of the control.

set value(value: string): void

Defined in src/components/radio/radio.ts:143

Parameters

  • value: string

Returns void

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

A boolean value which returns true if the element is a submittable element that is a candidate for constraint validation.

get willValidate(): boolean

Defined in src/components/common/mixins/forms/types.ts:60

Returns boolean

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

addEventListener(type: K, listener: object, options: boolean | AddEventListenerOptions): void

Defined in src/components/common/mixins/event-emitter.ts:7

Parameters

  • type: K
  • listener: object
  • options: boolean | AddEventListenerOptions

Returns void

Removes focus from the radio control.

blur(): void

Defined in src/components/radio/radio.ts:231

Returns void

Checks for validity of the control and emits the invalid event if it invalid.

checkValidity(): boolean

Defined in src/components/radio/radio.ts:244

Returns boolean

Simulates a click on the radio control.

click(): void

Defined in src/components/radio/radio.ts:219

Returns void

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

emitEvent(type: K, eventInitDict: CustomEventInit<D>): boolean

Defined in src/components/common/mixins/event-emitter.ts:30

Parameters

  • type: K
  • eventInitDict: CustomEventInit<D>

Returns boolean

Sets focus on the radio control.

focus(options: FocusOptions): void

Defined in src/components/radio/radio.ts:225

Parameters

  • options: FocusOptions

Returns void

Inherited from: FormAssociatedCheckboxRequiredMixin( EventEmitterMixin<IgcRadioComponentEventMap, Constructor<LitElement>>( LitElement ) )

removeEventListener(type: K, listener: object, options: boolean | EventListenerOptions): void

Defined in src/components/common/mixins/event-emitter.ts:17

Parameters

  • type: K
  • listener: object
  • options: boolean | EventListenerOptions

Returns void

Checks for validity of the control and shows the browser message if it invalid.

reportValidity(): boolean

Defined in src/components/radio/radio.ts:253

Returns boolean

Sets a custom validation message for the control. As long as message is not empty, the control is considered invalid.

setCustomValidity(message: string): void

Defined in src/components/radio/radio.ts:265

Parameters

  • message: string

Returns void

register(): void

Defined in src/components/radio/radio.ts:71

Returns void

igcChange: CustomEvent<IgcRadioChangeEventArgs>

Defined in src/components/radio/radio.ts:37