adds an icon with a question mark next to Slider
instead of it, you can use the helpMessage property:
var slider = new dhx.Slider("slider_container",{
helpMessage:"Some text"
});
var slider = new dhx.Slider("slider_container",{
help:"Some text"
});
The property is useful while using Slider in form.
Back to top