Check documentation for the latest version of dhtmlxSuite onRowInserted DHTMLX Docs

onRowInserted

fires when the row is added to the grid and filled with data

void onRowInserted(object row,number rInd);
rowobjectthe row object
rIndnumberthe row's index

Example

mygrid.attachEvent("onRowInserted",function(row,rInd){
    //your code here
})

Back to top