Hi folks,
I'm not able to get the loading panel to display in the following scenario. Does anyone have any recommendations?
We have a MasterPage with a UserControl on it. The UserControl contains a RadTreeView.
On a ContentPage, we have another UserControl which contains a custom grid class (which inherits from RadGrid).
When the user clicks on the RadTreeView.Node in the one UserControl, we want the loading panel to display over the UserControl containing the custom grid class.
Here's how we have it wired up:
MasterPage has RadAjaxManager, RadLoadingPanel and RadScriptManger
UserControl with RadTreeView has RadAjaxManagerProxy
UserControl with Custom Grid Class has RadAjaxManagerProxy
In the Page_Load event on the UserControl with the custom grid class, we have the following code:
I'm not able to get the loading panel to display in the following scenario. Does anyone have any recommendations?
We have a MasterPage with a UserControl on it. The UserControl contains a RadTreeView.
On a ContentPage, we have another UserControl which contains a custom grid class (which inherits from RadGrid).
When the user clicks on the RadTreeView.Node in the one UserControl, we want the loading panel to display over the UserControl containing the custom grid class.
Here's how we have it wired up:
MasterPage has RadAjaxManager, RadLoadingPanel and RadScriptManger
UserControl with RadTreeView has RadAjaxManagerProxy
UserControl with Custom Grid Class has RadAjaxManagerProxy
In the Page_Load event on the UserControl with the custom grid class, we have the following code:
| void Page_Load(object sender, EventArgs e) |
| { |
| NavTree1 = this.Page.Master.FindControl("NavTree1") as NavigationTree; |
| RadAjaxManagerProxy1.AjaxSettings.AddAjaxSetting(NavTree1, this.CustomGridObject); |
| } |
Ajax is fired properly, but the loading panel will not display.