5 Answers, 1 is accepted
0
Hello ehsan,
Please review the below articles to find out more information on RadAjax features and functionality.
http://www.telerik.com/help/aspnet-ajax/ajxajaxmanager.html
http://www.telerik.com/help/aspnet-ajax/ajx-how-it-works.html
http://www.telerik.com/help/aspnet-ajax/ajxdesigntime.html
http://www.telerik.com/help/aspnet-ajax/ajxajaxpanel.html
http://www.telerik.com/help/aspnet-ajax/ajxloadingpanel.html
http://demos.telerik.com/aspnet-ajax/ajax/examples/manager/firstlook/defaultcs.aspx
http://demos.telerik.com/aspnet-ajax/ajax/examples/panel/firstlook/defaultcs.aspx
http://demos.telerik.com/aspnet-ajax/ajax/examples/loadingpanel/loadingimages/defaultcs.aspx
Additionally, you can find attached a simple application illustrating the desired effect.
I hope this helps.
Regards,
Iana
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Please review the below articles to find out more information on RadAjax features and functionality.
http://www.telerik.com/help/aspnet-ajax/ajxajaxmanager.html
http://www.telerik.com/help/aspnet-ajax/ajx-how-it-works.html
http://www.telerik.com/help/aspnet-ajax/ajxdesigntime.html
http://www.telerik.com/help/aspnet-ajax/ajxajaxpanel.html
http://www.telerik.com/help/aspnet-ajax/ajxloadingpanel.html
http://demos.telerik.com/aspnet-ajax/ajax/examples/manager/firstlook/defaultcs.aspx
http://demos.telerik.com/aspnet-ajax/ajax/examples/panel/firstlook/defaultcs.aspx
http://demos.telerik.com/aspnet-ajax/ajax/examples/loadingpanel/loadingimages/defaultcs.aspx
Additionally, you can find attached a simple application illustrating the desired effect.
I hope this helps.
Regards,
Iana
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0

Marco
Top achievements
Rank 1
answered on 23 Jul 2010, 02:50 PM
Thanks a lot. This was helpful.
0

Suresh Mariaraj
Top achievements
Rank 1
answered on 27 Jun 2011, 02:35 PM
Hi,
I'm using the latest Telrik Version, I need a small clarification. I had seen your articles regarding usage of
RadAjaxLoadingPanel. Almost all the articles points how to bind a RadAjaxLoadingPanel with a specific control.
But in my case, I need this functionality for any postback happening from controls inside a asp:UpdatePanel.
For example, Consider an "asp:UpdatePanel" with 10 controls , out of which 3 having postbacks.
Will i be able to set a RadAjaxLoadingPanel for entire "asp:UpdatePanel" instead of declaring
one by one control.
With Regards
Sri
I'm using the latest Telrik Version, I need a small clarification. I had seen your articles regarding usage of
RadAjaxLoadingPanel. Almost all the articles points how to bind a RadAjaxLoadingPanel with a specific control.
But in my case, I need this functionality for any postback happening from controls inside a asp:UpdatePanel.
For example, Consider an "asp:UpdatePanel" with 10 controls , out of which 3 having postbacks.
Will i be able to set a RadAjaxLoadingPanel for entire "asp:UpdatePanel" instead of declaring
one by one control.
With Regards
Sri
0
Hello Suresh,
To achieve your goal, you can manually show and hide the RadAjaxLoadingPanel. In this case you can specify over which controls it should be displayed.
However, in your case I would suggest that you replace the ASP:UpdatePanel with RadAjaxPanel and set the LoadingPanelID property of the RadAjaxPanel to the ID of the RadAjaxLoadingPanel. Thus no matter which control inside the RadAjaxPanel performs the callback, the RadAjaxLoadingpanel will be automatically displayed over the whole RadAjaxPanel.
Kind regards,
Iana
the Telerik team
To achieve your goal, you can manually show and hide the RadAjaxLoadingPanel. In this case you can specify over which controls it should be displayed.
However, in your case I would suggest that you replace the ASP:UpdatePanel with RadAjaxPanel and set the LoadingPanelID property of the RadAjaxPanel to the ID of the RadAjaxLoadingPanel. Thus no matter which control inside the RadAjaxPanel performs the callback, the RadAjaxLoadingpanel will be automatically displayed over the whole RadAjaxPanel.
Kind regards,
Iana
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0

Suresh Mariaraj
Top achievements
Rank 1
answered on 03 Jul 2011, 02:24 PM
Hi Iana
Thanks for the suggestion, But for some reasons i should use asp:update Panel.
Issue is resolved with the following Code.
Regards
Sri
Thanks for the suggestion, But for some reasons i should use asp:update Panel.
Issue is resolved with the following Code.
<
script
language
=
"javascript"
type
=
"text/javascript"
>
// Activating and Deactivating the RadLoadingPanel
var loadingPanel = "";
var pageRequestManager = Sys.WebForms.PageRequestManager.getInstance();
var postBackElement = "";
pageRequestManager.add_initializeRequest(initializeRequest);
pageRequestManager.add_endRequest(endRequest);
function initializeRequest(sender, eventArgs) {
loadingPanel = $find("loadingPanel1");
postBackElement = "UpdatePanel1";
loadingPanel.show(postBackElement);
}
function endRequest(sender, eventArgs) {
loadingPanel = $find("loadingPanel1");
loadingPanel.hide(postBackElement);
}
</
script
>
Regards
Sri