User2103319870 posted
I am using Rad grid and requirement is iterate grid by column not row(GridViewItem) on a button click event using C#.
For GridBoundColumn you could use the GridDataItem and access the column cell by its UniqueName and retrieve the value from the cell's Text property
//loop thorugh each items in RadGrid
foreach (GridDataItem item in RadGrid1.Items)
{
//Get the cell value based on column name
//Change ID to your cell unique name
string id = item["ID"].Text;
}
You can refer this article for more details