onUIEditStop

fires when editing form is closed

void onUIEditStop(string id,string type);
idstringID of the external view
typestringtype of the external view

Example

webix.ui({
  view:"spreadsheet",
  id: "ss",
  toolbar: "full",
  menu:true
  // ...
});
 
$$("ss").attachEvent("onUIEditStop", (id, uiType)=>{
  // your code here
});

Details

The event is fired when user closes editing form for an external UI.

See also
Back to top