Check documentation for the latest version of dhtmlxSuite onBeforeFormSubmit DHTMLX Docs

onBeforeFormSubmit

fires before submitting data to the form

void onBeforeFormSubmit();

Available only in PRO Edition

Example

mygrid.attachEvent("onBeforeFormsubmit", function(){
    //your code here
    return true;
});

Back to top