SliderProps
Represents the props of the Kendo UI for Vue Slider component.
Definition
Package:@progress/kendo-vue-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
Specifies the aria-label attribute of the Slider.
ariaLabelledBy?
string
Identifies the element(s) which will label the component.
buttons?
boolean
Renders the arrow side buttons of the Slider if set to true.
defaultValue?
number
The default value of the Slider.
dir?
string
Represents the dir HTML attribute.
disabled?
boolean
Determines whether the Slider is disabled.
id?
string
Specifies the id of the component.
max
number
The maximum value of the Slider.
min
number
The minimum value of the Slider.
name?
string
Specifies the name property of the input DOM element.
onChange?
(event: SliderChangeEvent) => void
Determines the event handler that will be fired when the user edits the value.
required?
boolean
Specifies if null is a valid value for the component.
step?
number
Specifies the step of the value increase and decrease.
valid?
boolean
Overrides the validity state of the component.
If valid is set, the required property will be ignored.
validationMessage?
string
Controls the form error message of the component. If set to an empty string, no error will be thrown.
validityStyles?
boolean
If set to false, no visual representation of the invalid state of the component will be applied.
value?
number
The value of the Slider.
vertical?
boolean
If vertical is set to true, the orientation of the Slider changes from horizontal to vertical
(see example).