Webix datatable editor time

Hello i have datatable with few columns. Some columns have text 00h:00m is there a way to edit this column as like a time view ?

or like two combo for hours and minutes but for same cell thanks?

https://snippet.webix.com/84yoz33o

Hello @roma,

Your snippet is a good solution for this aim. Editor in inline-text fits for this purpouse.

If not inline is used, then you need to create your own editor:

webix.editors.myeditor = {
    ...
}

In documentation you find, how to customize editors.
Here is the snippet with example: Code Snippet

@NatashaS thanks nice solution !