Hello,

I have a panel that load another page via autoload. When I open page first time, it always takes more than 10 seconds when I expand that panel and another page is loading into this panel. The other page itself loads fast. It also loads fast when I expand my panel second time. No matter what I try it always takes long time to load for the first time.

I tried to put deferLayout to false via code, doesn't help.

Any suggestions?

Thank You


<ext:Panel ID="panInventory" Title="Inventory" TitleCollapse="true" Icon="Clipboard"
HideCollapseTool="true" Collapsible="true" Collapsed="true" Height="600" runat="server">
<AutoLoad Url="ListOfItems.aspx" Mode="IFrame" MonitorComplete="false" AutoDataBind="false"
NoCache="True" ShowMask="true">
</AutoLoad>

<Listeners>
<BeforeRender Handler="this.deferLayout = false;" />

</Listeners>
</ext:Panel>