Documentation

onSliderDrag

fires when the handle of slider was dragged ( but not released yet )

void onSliderDrag(){ ... };

Example

$$("my_slider").attachEvent("onSliderDrag", function(){
    webix.message("Dragged to "+this.getValue());
}

See also

Back to top