type | (string) the type of a control, set it to "slider" |
name | (string) the name of a control |
id | (string) the id of a control, auto-generated if not set |
value | (number|number[]) the value (or values, if the range option is set to true) the thumb will be set at on initialization of the slider |
width | (string|number|"content") the width of a control |
height | (string|number|"content") the height of a control |
padding | (string|number) sets padding between a cell and a border of the Slider control |
css | (string) adds style classes to a control |
disabled | (boolean) defines whether a control is enabled (false) or disabled (true) |
hidden | (boolean) defines whether a control is hidden |
label | (string) specifies a label for a control |
labelWidth | (string|number) sets the width of the label of a control |
hiddenLabel | (boolean) invisible label that will be used to identify the input on the server side |
labelPosition | (string) defines the position of a label: "left"|"top" |
helpMessage | (string) adds a help message to a control |
min | (number) the minimal value of slider, 0 by default |
max | (number) the maximal value of slider, 100 by default |
step | (number) the step the slider thumb will be moved with, 1 by default |
mode | (string) the direction of the Slider scale, "horizontal" by default |
tooltip | (boolean) enables prompt messages with ticks values on hovering over the slider thumb, true by default |
range | (boolean) enables/disables the possibility to select a range of values on the slider |
inverse | (boolean) enables/disables the inverse slider mode |
tick | (number) sets the interval of steps for rendering the slider scale |
majorTick | (number) sets interval of rendering numeric values on the slider scale |
tickTemplate | (function) sets a template for rendering values on the scale |