Webix table maxlength for the cell

How to limit cell length in a table? In other words, how to limit the length of the text that you can enter in a cell

Hello,
As a solution you can use onAfterEditStart event:

onAfterEditStart:function(){
  this.getEditor().getInputNode().setAttribute("maxlength", 5)
}

https://snippet.webix.com/vy9jms0b

Thanks. It’s work!