Check documentation for the latest version of dhtmlxSuite forEachCell DHTMLX Docs

forEachCell

executes the code for each cell in a row

void forEachCell(string|number rowId,function custom_code);
rowIdstring|numberthe id of the row where cells must be iterated
custom_codefunctiona function which gets the eXcell object as an incoming argument

Example

myTreeGrid.forEachCell("row1",function(cellObj,ind){
//execute code for each cell in a row with the id "row1" 
//cellObj - related cell object
//ind - column index
});

Back to top