Hi Telerik Team !
I have a two RADGRID on to my ASPX page.
I want to show the AJAX LOADING IMAGE when I perform any ACTION(sorting,reordering,filtering,selection) on to my RAD GRID.
Right now ,Iam able to do so but the problem is that Iam not able to get the full postback on to the server as a result of which
the records that is to be shown on the other GRID are not showing up.
By the way ,
I have used the below code to ajaxify my second grid as I dont want a POST for my second GRID.
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="PermissionListRadGrid"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="PermissionListRadGrid" LoadingPanelID="RadAjaxLoadingPanel1" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManager> |
Its working fine & I need is to show the loading image with full postback on to the server so as to get the relevant data on to the second grid based on the first grid.
How to do this ?
Anyone please help !