How to I can get all visible (filtered) rows?
Is there some method for this?
How to I can get all visible (filtered) rows?
Is there some method for this?
You may try to iterate through the filtered rows using the forEachRowA() method:
myGrid.forEachRowA(function(id){
console.log(myGrid.cellById(id,col_ind).getValue())
});
Thanks a lot.