Skip to main content

Slider

A control that allows selecting a numeric value by moving a thumb along a line with a fixed set of options.

Slider control

Related sample: Form. All controls

Adding Slider

You can easily add a Slider control during initialization of a form:

const form = new dhx.Form("form_container", {
rows: [
{
type: "slider",
name:"slider",
label: "slider",
labelWidth: "50px",
min: 0,
max: 100
}
]
});

Properties

View the full list of configuration properties of the Slider control.

Working with Slider

You can manipulate a Slider control by using methods or events of the object returned by the getItem() method.

For example, you can get the value of the control:

const value = form.getItem("slider_id").getValue();

Methods

Check the full list of methods of the Slider control.

Events

Check the full list of events of the Slider control.

Working with the dhtmlxSlider widget

There is a possibility to use methods of DHTMLX Slider via the getWidget() method of a Slider control.

For example, you can disable a Slider control. To do this, you need to get the widget attached to the Slider control and then use the disable() method of this widget.

const slider = form.getItem("slider_id").getWidget();  // -> DHTMLX Slider
slider.disable(); // disables slider

Check the full list of methods of the DHTMLX Slider component which you can apply via the getWidget() method.