getValue

returns the current value of the control

string|array getValue();
string|arraythe current value of the control

Example

webix.ui({
  view:"rangeslider",
  id: "myslider",
  width:550,
  label:"Price", value: "50,70",
});
 
$$("myslider").getValue(); // returns [50, 70]

Details

The returned value of the control may be a string or an array depending on the stringResult property.

See also
Back to top