validation during cell editing
webix.ui({
view:"datatable",
rules:{
price:function(obj){ return obj>0; }
},
liveValidation:true,
...
})
If enabled, validation will run during text typing in editor
Back to top