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