So...I have a page with a RadAjaxManager that is dynamacially loading a user contol. It display a RadAjaxLoadingPanel perfectly when loading the user control. Inside the User Control page (ascx) I have a RadAjaxManagerProxy defined. No matter what combo of settings I used in the proxy, I was not able to get the loading panel to display until I added the following to my Page_Load of my User Control.
I've been able to work around this by adding each initiator control to the Page Load in the above fashioni. After adding this, the loading panel now displays from the User Control. The only issue is that it I can't seem to figure out how to center the Loading Panel in the center of the page.
The base page utlizes the following javascript to center the control (not showing the code since it works and was borrowed from previous code):
<ClientEvents OnRequestStart="centerLoadingPanel"></ClientEvents>
Wondering how to get the same functionality on the RadAjaxManagerProxy which doesn't seem to support the ClientEvents..and not sure if the proxy is even being utilized any more.
RadAjaxManager.GetCurrent(this.Page).AjaxSettings.AddAjaxSetting(ddAgent, panelTarget, RadAjaxLoadingPanel1);
I've been able to work around this by adding each initiator control to the Page Load in the above fashioni. After adding this, the loading panel now displays from the User Control. The only issue is that it I can't seem to figure out how to center the Loading Panel in the center of the page.
The base page utlizes the following javascript to center the control (not showing the code since it works and was borrowed from previous code):
<ClientEvents OnRequestStart="centerLoadingPanel"></ClientEvents>
Wondering how to get the same functionality on the RadAjaxManagerProxy which doesn't seem to support the ClientEvents..and not sure if the proxy is even being utilized any more.