This is a migrated thread and some comments may be shown as answers.

Controls Flicker, No Loading Pannel

1 Answer 40 Views
AjaxLoadingPanel
This is a migrated thread and some comments may be shown as answers.
Mirek
Top achievements
Rank 1
Mirek asked on 07 Nov 2016, 07:08 PM

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

1 Answer, 1 is accepted

Sort by
0
Eyup
Telerik team
answered on 10 Nov 2016, 11:32 AM
Hello Mirek,

This is most probably happening because the RadAjaxLoadingPanel lacks its Skin property. Please set its Skin property, for example to Default and see whether this resolves the issue.

Regards,
Eyup
Telerik by Progress
Check out the new UI for ASP.NET Core, the most complete UI suite for ASP.NET Core development on the market, with 60+ tried-and-tested widgets, based on Kendo UI.
Tags
AjaxLoadingPanel
Asked by
Mirek
Top achievements
Rank 1
Answers by
Eyup
Telerik team
Share this question
or