I have a simple page with an Ajax timer, that updates some controls (A pannel and two link buttons). When the timer fires, the controls that it should be updating momentarily disappear from the page and then come back, and there is no loading pannel or anything. Se code below. What am I missing?
Timer:
<asp:Timer ID="ajtTimer" runat="server" Interval="15000" OnTick="ajtTimer_Tick"></asp:Timer>
Ajax Settings for Timer:
<telerik:AjaxSetting AjaxControlID="ajtTimer"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="pnlActions" LoadingPanelID="lpActions" /> <telerik:AjaxUpdatedControl ControlID="lbSaveAndGenerateTop" LoadingPanelID="lpActions" /> <telerik:AjaxUpdatedControl ControlID="lbSaveAndGenerate" LoadingPanelID="lpActions" /> </UpdatedControls></telerik:AjaxSetting>
Loading Pannel:
<telerik:RadAjaxLoadingPanel runat="server" ID="lpActions"></telerik:RadAjaxLoadingPanel>
Thanks,
Mirek
