stringResult

if the parameter is set to true, the method getValue() returns value as string (otherwise, as an object)

boolean stringResult;

Example

webix.ui({
  view: "timeboard",
  id: "myBoard",
  seconds: true,
  value: "09:10:20",
  stringResult: true
});
 
$$("myBoard").getValue(); // returns "09:10:20"


Default value:

false
See also
Back to top