3

I'm using radgrid in my asp.net application. In button click i'm binding the grid with data. But its takes some times to bind data. So I want to show the load image till finish databinding. How to show the loding image while radgrid loding with data. Please help me.

2 Answers 2

1
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server">
    <img alt="Loading..." src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page,
     "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' />
</telerik:RadAjaxLoadingPanel>

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="btnRefresh">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="pnlAlerts" LoadingPanelID="RadAjaxLoadingPanel1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>
Sign up to request clarification or add additional context in comments.

1 Comment

hi thanks for reply. but I'm gettig floowing error Microsoft JScript runtime error: Sys.InvalidOperationException: Could not find UpdatePanel with ID 'dispatcherGrdPnlPanel'. If it is being updated dynamically then it must be inside another UpdatePanel.
0

I think your code has the right idea to use RadAjaxManager to accomplish this. Is it safe to assume that your grid is found inside of pnlAlerts? If not, be sure to include your grid as an updated control. I also usually add a clause that the grid itself will trigger an ajax call (if for instance the user is filter, moving columns, etc). For example:

<telerik:AjaxSetting AjaxControlID="Grid1">
    <UpdatedControls>
        <telerik:AjaxUpdatedControl ControlID="Grid1" LoadingPanelID="RadAjaxLoadingPanel1" />
    </UpdatedControls>
</telerik:AjaxSetting>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.