I have one scenario where I have to find the index of ROW which is invisible? How to check if the row in the rad grid is visible or not?
The Visible property allows you to Get or Set the value. Here is an example...
foreach (GridDataItem item in RadGrid1.Items) { if (item.Visible) { // row is visible } else { // row is not visible } }
Matt