Hi,
I am implementing the rad grid at run time.I need to access the value of a cell (say,case_number) in every row by column name,Plz let me know how to do it?
here is my code,
IList<GridViewRow> rows = radGrid1.ChildrenOfType<GridViewRow>().ToList();
foreach (GridViewRow drow in rows)
{
//drv.Cells[1].Text; I can do this via column index but I need the same with column name
}
Thanks
I am implementing the rad grid at run time.I need to access the value of a cell (say,case_number) in every row by column name,Plz let me know how to do it?
here is my code,
IList<GridViewRow> rows = radGrid1.ChildrenOfType<GridViewRow>().ToList();
foreach (GridViewRow drow in rows)
{
//drv.Cells[1].Text; I can do this via column index but I need the same with column name
}
Thanks