executes the code for each cell in a row
rowId | string|number | the id of the row where cells must be iterated |
custom_code | function | a function which gets the eXcell object as an incoming argument |
myGrid.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