I have some controls inside of a multipage enclosed in div tags. All of the controls update/postback correctly with ajax, however, the loading panel does not appear. If i take all of the controls and just wrap them with a panel bar, then the loading panel appears properly. Any ideas why the loading panel will not appear just inside of the div tags inside the RadPageView inside the RadMultiPage? Thanks.
<telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="4" Width="898px" CssClass="tabPageView"> <telerik:RadPageView ID="RadPageView1" runat="server"> <div id="divLease" class="divLease"> <asp:Label ID="lbl1" runat="server" Text="Label" CssClass="lbl1"></asp:Label> <telerik:RadGrid ID="grdLs" runat="server" EnableEmbeddedSkins="false" Skin="" ShowHeader="false" GridLines="None"> <MasterTableView> </MasterTableView> </telerik:RadGrid> <telerik:RadListBox ID="lstLs" runat="server" Width="85" AutoPostBack="True" CausesValidation="False"> </telerik:RadListBox> <asp:Label ID="lbllss" runat="server" Text="Label" ></asp:Label> <telerik:RadGrid ID="grdasf" runat="server" ShowHeader="False" Width="300px" AutoGenerateColumns="False" GridLines="None"> <MasterTableView> <RowIndicatorColumn> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <ExpandCollapseColumn> <HeaderStyle Width="20px"></HeaderStyle> </ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn DataField="ss" UniqueName="ss"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="xx" DataFormatString="{0:0.00%}" DataType="System.Decimal" UniqueName="xx"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="aa" UniqueName="aa"> </telerik:GridBoundColumn> </Columns> </MasterTableView> </telerik:RadGrid> <asp:Label ID="lblasdfs" runat="server" Text="Remarks" Visible="false"></asp:Label> <telerik:RadTextBox ID="txt1" runat="server" Width="298" Visible="false" TextMode="MultiLine" CausesValidation="False" Font-Size="Smaller" ReadOnly="true"> </telerik:RadTextBox> <asp:RadioButton ID="rbRd" runat="server" Text="test1" Checked="true" CssClass="rbOwnerType" AutoPostBack="True" /> <asp:RadioButton ID="rbAaa" runat="server" Text="test2" Checked="false" AutoPostBack="True" /> </div> </telerik:RadPageView>