Check documentation for the latest version of dhtmlxSuite onSubAjaxLoad DHTMLX Docs

onSubAjaxLoad

fires when sub-row-ajax cell loads its data

void onSubAjaxLoad(string|number id,string content);
idstring|numberthe ID of the row for which data is loaded
contentstringthe response received from the server

Available only in PRO Edition

Example

grid.attachEvent("onSubAjaxLoad", function(id,content){
    //your code here
});

Back to top