getValue

returns the current value of the control

number getValue();
numberthe current value of the control

Example

webix.ui({
    view:"slider", id: "myslider",  
    label:"Price", 
    value:20
});
 
$$("myslider").getValue(); // returns the current value (20 in this case)

See also
Back to top