New to Kendo UI for VueStart a free 30-day trial

Represents the properties of a single item within the SegmentedControl component.

Definition

Package:@progress/kendo-vue-buttons

Properties

The aria-label HTML attribute of the item button.

dir?

string

Represents the dir HTML attribute of the item button, controlling text directionality.

disabled?

boolean

Specifies whether the item is disabled.

CSS class name applied to the icon element only when the item is selected. Has no effect when itemTemplate is provided.

onBlur?

(e: FocusEvent) => void

Event handler fired when the item button loses focus.

Parameters:eFocusEvent

onClick?

(e: MouseEvent) => void

Event handler fired when the item button is clicked.

Parameters:eMouseEvent

onFocus?

(e: FocusEvent) => void

Event handler fired when the item button receives focus.

Parameters:eFocusEvent

onMouseEnter?

(e: MouseEvent) => void

Event handler fired when the mouse pointer enters the item button.

Parameters:eMouseEvent

onMouseLeave?

(e: MouseEvent) => void

Event handler fired when the mouse pointer leaves the item button.

Parameters:eMouseEvent

svgIcon?

SVGIcon

Sets an SVG icon to render inside the item using an Icon element. Only rendered when itemTemplate is not provided.

text?

string

Specifies the text label of the SegmentedItem. Rendered inside a <span> element. Only rendered when itemTemplate is not provided.

title?

string

Sets the title HTML attribute of the item button.

type?

"button" | "submit" | "reset"

Specifies the type HTML attribute of the item button.

Default:

"button"

value

string

The unique identifier for the SegmentedItem. Used to match against the SegmentedControl's value to determine selection.