I receive the error "'Telerik.Web.UI.RadGrid' does not contain a definition for 'Rows' and no extension method 'Rows' accepting a first argument of type 'Telerik.Web.UI.RadGrid' could be found (are you missing a using directive or an assembly reference?)" when trying to iterate through the rows of a radgrid and get the values of a specific column.
Essentially what I am trying to do is get all values for a specific column and put those values in a comma delimited list - this is done while the rad grid is being created...any help with that would be greatly appreciated.
Here is an example I used for a regular gridview prior to switching to a radgrid...
That seemed to work but since I have switched to using the RadGrid it doesn't.
Thanks!
Wayne Christopherson
Essentially what I am trying to do is get all values for a specific column and put those values in a comma delimited list - this is done while the rad grid is being created...any help with that would be greatly appreciated.
Here is an example I used for a regular gridview prior to switching to a radgrid...
foreach (GridViewRow gvr in gvCustomerList.Rows)
{
sIen += gvr.Cells[0].Text +
",";
}
That seemed to work but since I have switched to using the RadGrid it doesn't.
Thanks!
Wayne Christopherson