Hello,
We are trying to use the RadGrid like an "excel" grid, and it works fine, however when we try to loop through each cell, the "Text" property always shows up as " ". However, when we use the "ExtractValues()" method, we can get the proper values. All is fine and dandy, until we hit a column that is "ReadOnly". The ReadOnly cell does not show up in the ExtractValues variable (which makes sense), but now I am back to square one as to how to get value from the cells by UniqueName. We are using Telerik version 2009.2.826.35 (2009 Q2).
| foreach (GridDataItem row in RadGrid1.MasterTableView.Items) |
| { |
| var cell = row["MyUniqueName"]; |
| Response.Write(cell.Text); // This comes out to be " " each time. |
| } |
Any help in directing me in the right direction would be greatly appreciated. Thanks.
Best Regards,
Patrick