This is a migrated thread and some comments may be shown as answers.

Get Detail Controls

1 Answer 37 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Shabbir
Top achievements
Rank 1
Shabbir asked on 02 Feb 2009, 07:01 AM
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; 

 

 

    }
}

 

 

 

1 Answer, 1 is accepted

Sort by
0
Yavor
Telerik team
answered on 03 Feb 2009, 01:31 PM
Hello Shabbir,

The detail items are only accessible as shown in this article.
I hope this helps.

Kind regards,
Yavor
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Grid
Asked by
Shabbir
Top achievements
Rank 1
Answers by
Yavor
Telerik team
Share this question
or