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

Changing the background while the grid is refreshing

1 Answer 36 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Kiran
Top achievements
Rank 1
Kiran asked on 02 May 2014, 03:30 PM
Hi,
Is there any way to change the background while the grid is refreshing due to filtering. Its like 5-7 sec delay and dont want the user to see a blank screen (grid portion) till then. It could be an image or a text.

Thanks in advance
Kiran

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 05 May 2014, 06:48 AM
Hi Kiran,

One suggestion is that you can use a RadAjaxLoadingPanel for your required scenario. You can add it along with a RadAjaxPanel or RadAjaxManager and have the Grid in it.

ASPX:
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Silk"
BackColor="Yellow">
</telerik:RadAjaxLoadingPanel>
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1">
    <telerik:RadGrid ID="RadGrid1" runat="server" AllowFilteringByColumn="true">
        . . .
    </telerik:RadGrid>
</telerik:RadAjaxPanel>

Thanks,
Princy
Tags
Grid
Asked by
Kiran
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or