Kendo.Mvc.UI.Fluent.RangeSliderBuilder
Defines the fluent API for configuring the Kendo UI RangeSlider
Methods
Values(System.Nullable<T>,System.Nullable<T>)
Sets the value of the range slider.
Values(T[])
Sets the value of the range slider.
LargeStep(System.Nullable<T>)
The delta with which the value will change when the user presses the Page Up or Page Down key (the drag handle must be focused). Note: The allied largeStep will also set large tick for every large step.
Parameters
value System.Nullable<T>
The value for LargeStep
LeftDragHandleTitle(System.String)
The title of the left drag handle of the RangeSlider.
Parameters
value System.String
The value for LeftDragHandleTitle
Max(System.Nullable<T>)
The maximum value of the RangeSlider.
Parameters
value System.Nullable<T>
The value for Max
Min(System.Nullable<T>)
The minimum value of the RangeSlider.
Parameters
value System.Nullable<T>
The value for Min
Orientation(Kendo.Mvc.UI.SliderOrientation)
The orientation of a RangeSlider - "horizontal" or "vertical".
Parameters
value Kendo.Mvc.UI.SliderOrientation
The value for Orientation
RightDragHandleTitle(System.String)
The title of the right drag handle of the RangeSlider.
Parameters
value System.String
The value for RightDragHandleTitle
SelectionEnd(System.Nullable<T>)
The selection end value of the RangeSlider.
Parameters
value System.Nullable<T>
The value for SelectionEnd
SelectionStart(System.Nullable<T>)
The selection start value of the RangeSlider.
Parameters
value System.Nullable<T>
The value for SelectionStart
SmallStep(System.Nullable<T>)
The small step value of the RangeSlider. The underlying value will be changed when the end user (1) clicks on the increase or decrease buttons of the RangeSlider, (2) presses the arrow keys (the drag handle must be focused), or (3) drags the drag handle.
Parameters
value System.Nullable<T>
The value for SmallStep
TickPlacement(Kendo.Mvc.UI.SliderTickPlacement)
Denotes the location of the tick marks in the RangeSlider. The available options are:
Parameters
value Kendo.Mvc.UI.SliderTickPlacement
The value for TickPlacement
Tooltip(System.Action<Kendo.Mvc.UI.Fluent.RangeSliderTooltipSettingsBuilder<T>>)
Configuration of the RangeSlider tooltip.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.RangeSliderTooltipSettingsBuilder>
The configurator for the tooltip setting.
Events(System.Action<Kendo.Mvc.UI.Fluent.RangeSliderEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.RangeSliderEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().RangeSlider()
.Name("RangeSlider")
.Events(events => events
.Change("onChange")
)
)