Last post Apr 14, 2016 03:51 PM by AZMatt
Member
2 Points
4 Posts
Apr 14, 2016 03:44 PM|Govindon Gopalan|LINK
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?
Star
9859 Points
2556 Posts
Apr 14, 2016 03:51 PM|AZMatt|LINK
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
Member
2 Points
4 Posts
HOW TO FIND THE ROW INDEX WHICH IS INVISIBLE IN RAD GRID?
Apr 14, 2016 03:44 PM|Govindon Gopalan|LINK
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?
Star
9859 Points
2556 Posts
Re: HOW TO FIND THE ROW INDEX WHICH IS INVISIBLE IN RAD GRID?
Apr 14, 2016 03:51 PM|AZMatt|LINK
The Visible property allows you to Get or Set the value. Here is an example...
Matt