fires before the Kanban editor is opened
editor | object | the view object of the editor |
obj | object | an item data object |
webix.ui({
view:"kanban",
on:{
onBeforeEditorShow:(editor,obj) => {
if (obj.status !== "admin"){
webix.message("Insufficient access rights","warning");
return false;
}
}
}
});