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
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.