how to find the type of each cell by running through the ent


how to find the type of each cell by running through the entire grid, in JAVASCRIPT.



 



 



 

There is no native API., but can be done in next way

mygrid.forEachRow(function(id){
    for (var i=0; i<mygrid.getColumnCount(); i++)
       alert(mygrid.cells(id,i).cell._cellType||mygrid.cellType[i])
});