Hidden Rows

Is there a way to check to see if a row is or not hidden.  I want to recalculate totals after filtering.  I am totaling six columns any ideas?

In case if row hidden by grid.setRowHidden you can check it directly through DOM as

if ( grid.rowsAr[ID].style.display!=‘none’ ) alert(‘visible’);

Hi,

Just to comment on the above approach…
I found this approach to be better than using setRowHidden API if you want to hide/show rows on and off on an event (e.g. check/uncheck a checkbox). setRowHidden(id,true) worked for me but I was not able to unhide the rows by calling setRowHidden(id,false). I then tried this approach and it worked as expected for me. I would also say that this approach hides/unhides the rows faster.

Gaurav

I would also say that this approach hides/unhides the rows faster.
Its definitely faster, because not trigger size updates logic. But beware - if you are using auto-height mode - grid will not react on row hiding in such case.