fires when editing form is closed
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("onUIEditStop", (id, uiType)=>{
// your code here
});
The event is fired when user closes editing form for an external UI.