Check documentation for the latest version of dhtmlxSuite onAfterEditStart DHTMLX Docs

onAfterEditStart

fires when the editor is ready for data input

void onAfterEditStart(string|number id);
idstring|numberid of the item that will be edited

Example

myDataView.attachEvent("onAfterEditStart", function (id){
    // your code here
});

Back to top