Ok, I have an aspx page with a tabstrip and multipage in it. There are 3 tabs, on the second tab there is a radgrid (rgManage). When this tab is clicked I need to refresh the grid.
}
I can find the multipage control, but how do I find the radgrid which is in the PageView of the multipage? The above does not work but it is where I am at.
protected void radtabCallInOrder_Click(object sender, RadTabStripEventArgs e)
{ if (e.Tab.Text == "Order Items") { RadGrid rgManage = (RadGrid)Page.Master.FindControl("ContentPlaceHolder1").FindControl("radmultipageCallInOrder").FindControl("rgManage"); if (rgManage != null) { rgManage.Rebind(); } } I can find the multipage control, but how do I find the radgrid which is in the PageView of the multipage? The above does not work but it is where I am at.