fires before editor closing is initialized
id | string|number | id of the item |
boolean | true - to trigger the default action, false - to block it |
myDataView.attachEvent("onBeforeEditStop", function (id){
// your code here
return true;
});
The event is blockable, returning false will block the default action.
Back to top