getValue of ui.timeboard, Methods Webix Docs
returns the current value of the control
string|Date getValue();
| string|Date | the 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
API
Articles