4 Answers, 1 is accepted
0
Hi,
The spinning icon will appear only if you are using RadAjaxLoadingPanel:
http://docs.telerik.com/devtools/aspnet-ajax/controls/ajax/radajaxloadingpanel/overview
Regards,
Pavlina
Telerik
The spinning icon will appear only if you are using RadAjaxLoadingPanel:
http://docs.telerik.com/devtools/aspnet-ajax/controls/ajax/radajaxloadingpanel/overview
Regards,
Pavlina
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
0
David
Top achievements
Rank 1
Iron
Iron
Veteran
answered on 12 Apr 2016, 12:08 PM
I tried to eliminate loading panel by doing the following:
<telerik:AjaxSetting AjaxControlID="ddlValueOfBenefitStreamByYear">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdValueOfBenefitsByYear" LoadingPanelID="RadAjaxLoadingPanel1"/>
<telerik:AjaxUpdatedControl ControlID="lblValueOfBenefitsByYear"/>
</UpdatedControls>
</telerik:AjaxSetting>
I still see spinning wheel above lblValueOfBenefitsByYear.
I also tried to expand panel across whole page by assigning Modal="true" to panel, which didn't work too
0
Hi,
By setting LoadinPanelID in the AjaxSettings you are showing the spin icon. To prevent it from appearing update the AjaxManager Settings as shown below.
Also make sure that you are not setting DefaultLoadingPanelID to the AjaxManager, because this property will also show the loading icon. Another solution would be to delete the complete RadAjaxLoadingPanel declaration from the page and not set loading panel for the updated controls.
Regards,
Pavlina
Telerik
By setting LoadinPanelID in the AjaxSettings you are showing the spin icon. To prevent it from appearing update the AjaxManager Settings as shown below.
<
telerik:AjaxSetting
AjaxControlID
=
"ddlValueOfBenefitStreamByYear"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"grdValueOfBenefitsByYear"
/>
<
telerik:AjaxUpdatedControl
ControlID
=
"lblValueOfBenefitsByYear"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
Also make sure that you are not setting DefaultLoadingPanelID to the AjaxManager, because this property will also show the loading icon. Another solution would be to delete the complete RadAjaxLoadingPanel declaration from the page and not set loading panel for the updated controls.
Regards,
Pavlina
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
0
David
Top achievements
Rank 1
Iron
Iron
Veteran
answered on 12 Apr 2016, 03:52 PM
DefaultLoadingPanelID was a culprit!
Thank you very much