setProperties()
allows changing available configuration attributes of the control dynamically
setProperties(propertyConfig: ISliderProps): void;
Parameters:
propertyConfig: object
- an object with the available attributes of the control and their new values
Example
form.getItem("slider").setProperties({
min: 5, max: 20,
step: 5,
tooltip: false
});
The method invokes the afterChangeProperties and beforeChangeProperties events.
It is possible to change values of the following configuration attributes of the Slider control:
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 |
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 |
Change log:
added in v7.0