Hi,
I wish to loop through all rows in a RadGrid, not just the ones that are currently displayed, to extract the value of a cell. I am using the following code:
This works fine but only for the currently displayed items. I wish to do this for all items in RadGrid, not just the ones that are displayed.
Thanks
Tim
I wish to loop through all rows in a RadGrid, not just the ones that are currently displayed, to extract the value of a cell. I am using the following code:
For Each item As GridDataItem In RadGrid1.Items
Response.Write("Custid=" & item("custid").Text & "<
BR
>")
Next
This works fine but only for the currently displayed items. I wish to do this for all items in RadGrid, not just the ones that are displayed.
Thanks
Tim