I used the following code for progress bar indicator:
<telerik:RadScriptManager ID="ScriptManager1" runat="server" />
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" >
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="JobReportGrid">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="JobReportGrid" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="JobDetailGrid">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="JobDetailGrid" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" EnableAjaxSkinRendering="true" runat="server">
</telerik:RadAjaxLoadingPanel>
I have two radgrid:JobReportGrid and JobDetailGrid.
When I entered search criteria progress bar does not work but when I changed size of the page progress bar is working.
Also when I click on the row in my JobReportGrid progress bar is working but data in JobDetailgrid not display and I know for sure that there is a data.
when I comment out above coding everything working perfectly but I need progress bar indicator.
Thanks so much for your help.