fires when editing form is opened
id | string | ID of the external view |
type | string | type of the external view |
webix.ui({
view:"spreadsheet",
id: "ss",
toolbar: "full",
menu:true,
// ...
});
$$("ss").attachEvent("onUIEditStart", (id, uiType)=>{
// your code here
});
The event is fired when user opens editing form for an external UI.