protected void RadGrid1_PreRender(object sender, EventArgs e)
{
RadGrid RadGrid1 = (RadGrid)sender;
if(RadGrid1.Items.Count==0)
{
RadGrid1.Visible = false;
}
}
This is a inner RadGrid. In this, I would like to reach to outer RadGrid column and set that column visible=false. So my question is how to I reach to parent grid column from inner grid ?
Please help,
Smiely