Im using a radgrid with paging, and handling the pageindexchanged, to save everything in the grid (a few checkboxes).
protected void OnPageIndexChanged(object sender, GridPageChangedEventArgs e)
{
RadGrid radGrid = (RadGrid)sender;
foreach (GridDataItem item in radGrid.Items)
{
CheckBox checkBox = (CheckBox)item.FindControl("chkList");
}
}
There's a nested item, with a textarea, in each item. How can I get a reference for the nested textarea inside each dataitem?
protected void OnPageIndexChanged(object sender, GridPageChangedEventArgs e)
{
RadGrid radGrid = (RadGrid)sender;
foreach (GridDataItem item in radGrid.Items)
{
CheckBox checkBox = (CheckBox)item.FindControl("chkList");
}
}
There's a nested item, with a textarea, in each item. How can I get a reference for the nested textarea inside each dataitem?