Hi
I am using Infragistics controls 6.3.20063.53 in my ASP.NET 2.0 applications.
I am using UltraWebGrid inside a WARP.
<igmisc:WebAsyncRefreshPanel ID="WebRefreshPanel" runat="server" TriggerControlIDs="ImageButton1,MtDrop,cbActualOp,cbmax,cbRelease,btnReset" InitializePanel="WebRefreshPanel_InitializePanel"> <igtbl:UltraWebGrid ID="gridCriteria" runat="server" Width="700px" OnPreRender="gridCriteria_PreRender">
I am assigning datasource to grid on click on ImageButton1.gridCriteria.DataSource = this.RptDataSet;gridCriteria.DataBind();
function
WebRefreshPanel_InitializePanel(oPanel){oPanel.getProgressIndicator().setImageUrl("../Images/loading.gif");
It works fine when i return smaller datasets. But it does not work if i return large datasets.
The progress indicator is displayed and it does not disappear even after a long time.
Will this happen if an error occurs or Session expires after assigning the source to grid?
How to chek if the refresh is complete?
Is possible to identify the the start and end time of refresh?
Thanks
Ashok