onBeforeEditorShow

срабатывает перед открытием редактора Kanban

void onBeforeEditorShow(object editor,object obj);
editorobjectобъект редактора (WebixView)
objobjectобъект с данными карточки

Example

webix.ui({
    view:"kanban",
    on:{
        onBeforeEditorShow:(editor,obj) => {
            if (obj.status !== "admin"){
                webix.message("Insufficient access rights","warning");
                return false;
            }
        }
    }
});

Related samples

See also
Наверх