HI ALL,
Help plz, can I find out their nested controls. I want this, see below.
Help plz, can I find out their nested controls. I want this, see below.
protected void AD_View_ItemCommand(object source, GridCommandEventArgs e)
{
if (e.CommandName == "ExpandCollapse")
{
GridDataItem item = (GridDataItem)e.Item;
item.Selected =
true;
string strkey = item.GetDataKeyValue("AD_ID").ToString();
this.Title = this.Title + strkey + " Mode(Expand): " + ((item.Expanded) ? false : true) ;
Label lbl = (Label)item.FindControl("lblRowNumber");
//EDR_View this is nested grid
RadGrid grdEDR_View = (RadGrid)item.FindControl("EDR_View");
if (grdEDR_View != null)
{
grdEDR_View.DataSource = GET_EDR_Records(strkey);
}
}
}