I have a two level jqGrid (grid/subgrid) implementation that works very fine. Now I have a requirement that push me to implement a third level subgrid in only some of the second level rows. Is there any way to exclude the opening of the third level if any condition on the row does not permit it?
Thanks very much
EDIT as per @Oleg answer
I have implemented the more complex logic example as in the referenced answer, that is
loadComplete: function() {
var grid = $("#list");
var subGridCells = $("td.sgcollapsed",grid[0]);
$.each(subGridCells,function(i,value){
[...]
var rowData = grid.getRowData( ??? );
});
}
Can I use any field to retrieve the rowData in the each loop?