Ok, this should be simple but it isn't working...I must be doing something simple wrong.
Here is what I have setup...master page with RadScriptManager/RadAjaxManager, looks like this:
ASPX page (inherit from Master Page Above ) with RadAjaxManagerProxy:
and LoadingPanel:
On the ASPX page, I have a MultiView control called MainMulti, which I Ajaxified above. If I press my ASP BUTTON "StepTwoContinueButton", after a few seconds, the page changes the current view of the MultiView control via AJAX...BUT, I NEVER SEE THE LOADING PANEL. I want it to show over the form while the AJAX operation is happening.
A live sample of this problem is here:
http://southcountyri.dev.ccinspire.com/visitor-resources/send-a-postcard/balloons
when you click on "Contine" I want the loading panel to cover the form(which is my MultiView). What am I doing wrong that makes the loading panel never show?
Here is what I have setup...master page with RadScriptManager/RadAjaxManager, looks like this:
<telerik:RadScriptManager runat="server" ID="PrimaryScriptManager"> <Scripts> <asp:ScriptReference Assembly="Telerik.Web.UI, Version=2011.3.1206.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Name="Telerik.Web.UI.Common.Core.js" /> <asp:ScriptReference Assembly="Telerik.Web.UI, Version=2011.3.1206.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Name="Telerik.Web.UI.Common.jQuery.js" /> <asp:ScriptReference Path="/scripts-uncompressed/telerik.jquery.patch.js" /> <asp:ScriptReference Path="/scripts-uncompressed/browser.detect.js" /> <asp:ScriptReference Path="/scripts-uncompressed/jquery.colorbox-min.js" /> <asp:ScriptReference Path="/scripts-uncompressed/email.signup.js" /> <asp:ScriptReference Path="/scripts-uncompressed/common.js" /> </Scripts></telerik:RadScriptManager><telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"></telerik:RadAjaxManager>ASPX page (inherit from Master Page Above ) with RadAjaxManagerProxy:
<telerik:RadAjaxManagerProxy ID="RadAjaxManagerProxy1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="MainMulti"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="MainMulti" LoadingPanelID="RadAjaxLoadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManagerProxy>and LoadingPanel:
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Windows7" MinDisplayTime="5"> </telerik:RadAjaxLoadingPanel>On the ASPX page, I have a MultiView control called MainMulti, which I Ajaxified above. If I press my ASP BUTTON "StepTwoContinueButton", after a few seconds, the page changes the current view of the MultiView control via AJAX...BUT, I NEVER SEE THE LOADING PANEL. I want it to show over the form while the AJAX operation is happening.
A live sample of this problem is here:
http://southcountyri.dev.ccinspire.com/visitor-resources/send-a-postcard/balloons
when you click on "Contine" I want the loading panel to cover the form(which is my MultiView). What am I doing wrong that makes the loading panel never show?