This is a migrated thread and some comments may be shown as answers.

Cannot get loading panel to display

3 Answers 64 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Peter
Top achievements
Rank 1
Peter asked on 31 Dec 2008, 07:23 PM

I am trying to get a loading panel to display during AJAX postbacks.  I have a RadGrid inside an Update Panel.  The help states "In order to have a LoadingPanel, you need to drag it to your web form from the toolbox just like any control. Then you can set a control to use a LoadingPanel using the design-time."  However, is does not explain how to "set a control to use a LoadingPanel."  Please point me to the documentation for doing this (I have been digging for a while but cannot find it.)

Thanks,
Peter

3 Answers, 1 is accepted

Sort by
0
Bruno
Top achievements
Rank 2
answered on 01 Jan 2009, 10:23 AM
0
Accepted
Dimo
Telerik team
answered on 02 Jan 2009, 01:53 PM
Hi Peter,

You set the RadAjaxLoadingPanel to be a default loading panel for the RadAjaxManager on the page.

http://www.telerik.com/help/aspnet-ajax/ajxajaxmanager.html

<telerik:RadAjaxManager  DefaultLoadingPanelID="......">
......
</telerik:RadAjaxManager>


Alternatively, you can set the RadAjaxLoadingPanel to be used only with certain AJAX requests (executed by the RadAjaxManager):

<AjaxSettings>
    <telerik:AjaxSetting AjaxControlID="Button1">
        <UpdatedControls>
            <telerik:AjaxUpdatedControl ControlID="RadTextBox1" LoadingPanelID="..." />
        </UpdatedControls>
    </telerik:AjaxSetting>
</AjaxSettings>



Best wishes,
Dimo
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Peter
Top achievements
Rank 1
answered on 02 Jan 2009, 02:04 PM

Thanks, Dimo, that is exactly what I was looking for.

Peter
Tags
Ajax
Asked by
Peter
Top achievements
Rank 1
Answers by
Bruno
Top achievements
Rank 2
Dimo
Telerik team
Peter
Top achievements
Rank 1
Share this question
or