Can I get detail controls without traversing on the nested items. Like from griddata item.
GridItem
[] nestedViewItems = tableView.GetItems(GridItemType.NestedView);
foreach (GridNestedViewItem nestedViewItem in nestedViewItems)
{
string strKey = tableView.Items[i].GetDataKeyValue("ADGuid").ToString();
if (Key_ID == strKey)
{
gEDR_View = (
RadGrid)nestedViewItem.FindControl("grdEDR_View");
gEDR_View.Visible =
true;
}
}