onUIEditStart

fires when editing form is opened

void onUIEditStart(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("onUIEditStart", (id, uiType)=>{
  // your code here
});

Details

The event is fired when user opens 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.