RangeSliderProps
Represents the properties of RangeSlider component.
Definition
Package:@progress/kendo-react-inputs
Properties
ariaDescribedBy?
string
Identifies the element(s) which will describe the component, similar to HTML aria-describedby attribute. For example these elements could contain error or hint message.
ariaLabel?
string
Sets the aria-label attribute on the RangeSlider wrapper and its drag handles.
The start handle gets "{ariaLabel} start" and the end handle gets "{ariaLabel} end".
ariaLabelledBy?
string
Identifies the element(s) which will label the component.
children?
ReactNode
Determines the children nodes.
className?
string
Sets additional classes to the RangeSlider.
The default set values of type Range - start and end.
disabled?
boolean
Determines the disabled mode of the RangeSlider, if true - disabled.
endTabIndex?
number
Sets the tabIndex attribute to the end drag handle.
id?
string
Sets the id property of the top div element of the RangeSlider.
largeStep?
number
Specifies the step by which the RangeSlider's value will be increased or decreased using pageUp or pageDown keyboard buttons. Defaults to 10.
max
number
The maximum possible value of the RangeSlider.
min
number
The minimum possible value of the RangeSlider.
name?
string
Specifies the name property of the input DOM element.
This property is part of the FormComponentProps interface.
onChange?
(event: RangeSliderChangeEvent) => void
Triggered after value change - gets outside access to the element, new values and the event type.
required?
boolean
Specifies if null is a valid value for the component.
This property is part of the FormComponentProps interface.
startTabIndex?
number
Sets the tabIndex attribute to the start drag handle.
step?
number
Specifies the step by which the RangeSlider's value will be increased or decreased using the keyboard arrows. Defaults to 1.
style?
CSSProperties
Sets additional CSS styles to the RangeSlider.
valid?
boolean
Overrides the validity state of the component.
If valid is set, the required property will be ignored.
This property is part of the FormComponentProps interface.
validationMessage?
string
Controls the form error message of the component. If set to an empty string, no error will be thrown.
This property is part of the FormComponentProps interface.
validityStyles?
boolean
If set to false, no visual representation of the invalid state of the component will be applied.
This property is part of the FormComponentProps interface.
vertical?
boolean
The RangeSlider orientation if true - vertical, else - horizontal.
webMcp?
boolean | WebMcpProps
Enables Web MCP tool registration for this component.
Requires a parent WebMcpProvider from @progress/kendo-react-webmcp.