On save button click i want to save the values stored in all my ItemTemplate's Label which is inside GridTableView of a RadGrid.
I 'm not sure how to write the foreach statement on Save button click to get the those.
My Efforts-
protected void btnSave_Click(...)
{
foreach(GridDataItem item in rgScopeOfWork.MasterTabelView.Items)
{
// here we can get only those which are outside of the GridTableView
}
}
How to write foreach to get to loop through the columns inside GridTableView?
Thanks .
I 'm not sure how to write the foreach statement on Save button click to get the those.
My Efforts-
protected void btnSave_Click(...)
{
foreach(GridDataItem item in rgScopeOfWork.MasterTabelView.Items)
{
// here we can get only those which are outside of the GridTableView
}
}
How to write foreach to get to loop through the columns inside GridTableView?
Thanks .