extend a timeboard's setValue and getValue?

Hi,

How would I extend a timeboard’s setValue and getValue?

-Thomas

Hello @TomasF ,
It can be done with a bit of customization. You can redefine get/setValue methods:

webix.protoUI({
//custom set/getValue pattern 
  name: "customTimeboard",
 setValue: function(value){
...
  },
  getValue:function(){    
...
  },
}, webix.ui.timeboard)

Please check the following snippet:
https://snippet.webix.com/uyuy6eaz