getValue

returns the current value of the control

string|Date getValue();
string|Datethe current value of the control

Example

webix.ui({
  view:"timeboard",
  value: "12:45",
  stringResult: true,
  id: "myBoard"
});
 
$$("myBoard").getValue(); // returns "12:45"

Details

If the stringResult property is set to false the method will return a date object.

See also
Back to top