Hi there,
I have a timer that updates a grid on a condition. For example:
The issue here is that even though the datagrid is NOT updated, it still gets refreshed. When I say refeshed i mean its just the datagrid not the whole page.
The grid is ajaxisfied using:
Any help would be appreciated.
Thanks
K
Edited (Nov-21-2011): I realized the OnInit code is being triggered after each timer tick as well. That is not normal is it
I have a timer that updates a grid on a condition. For example:
if (IsDifferentFilter()){ //Load logs method is called so the datagrid will be updated Thread logsThread = new Thread(new ThreadStart(LoadLogs)); logsThread.Start(); logsThread.Join();}//else the datagrid will NOT be updatedThe issue here is that even though the datagrid is NOT updated, it still gets refreshed. When I say refeshed i mean its just the datagrid not the whole page.
The grid is ajaxisfied using:
<telerik:RadAjaxManagerProxy ID="radAjaxManagerProxyLogs" runat="server" > <AjaxSettings> <telerik:AjaxSetting AjaxControlID="tmrAutoFilter"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="dgLogs" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="dgLogs"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="dgLogs" LoadingPanelID="ldgBar" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings></telerik:RadAjaxManagerProxy>Any help would be appreciated.
Thanks
K
Edited (Nov-21-2011): I realized the OnInit code is being triggered after each timer tick as well. That is not normal is it