or
I would like to freeze the whole page, including menus, and add those buttons that should freeze the page in the code behind file (Some buttons on the page should not freeze the page). I have a master page and using client validators on the page.
/Grateful
| <telerik:RadRotator ID="RadRotatorNews" runat="server" FramesToShow="1" RotatorType="AutomaticAdvance" ScrollDirection="Up" |
| FrameDuration="8000" height="76px" width="300px"> |
| <ItemTemplate> |
| <table class="News_Detail"> |
| <tr> |
| <td style="width:85px"> </td> |
| <td align="left" class="News_Text"> |
| <%#DataBinder.Eval(Container.DataItem, "Date")%> |
| <asp:Label ID="lblID" CssClass="News_TextCache" Visible="true" runat="server" Text='<%#DataBinder.Eval(Container.DataItem, "ID")%>'></asp:Label> |
| </td> |
| </tr> |
| <tr> |
| <td style="width:85px"> </td> |
| <td align="left" class="News_Text"> |
| <%#DataBinder.Eval(Container.DataItem, "Titre")%> |
| </td> |
| </tr> |
| <tr> |
| <td style="width:85px"> </td> |
| <td align="right"class="News_Text"> |
| <asp:HyperLink ID="HyperLinkPlus" runat="server"><asp:Label ID="lblPlus" runat="server" Text="Plus.."></asp:Label></asp:HyperLink> |
| </td> |
| </tr> |
| </table> |
| </ItemTemplate> |
| </telerik:RadRotator> |
<
uc1:imagelibrary id="Imagelibrary1" runat="server" ControlType="Images" DefaultTab="Page" Category="Facilities" Type="ParkImage" Title="Facility Images" />
Then it works fine. If I have 2 or more, all the subsequent controls use the 1st controls LoadingPanel, instead of it's own. You can see by the code that it spits out:
| UpdatedControls : [{ControlID:"ctl01_Imagelibrary2_ajaxPanelDataList",PanelID:"ctl01_Imagelibrary1_LoadingPanelFull"}]},{InitControlID : "ctl01_Imagelibrary2_dlImages", UpdatedControls : [{ControlID:"ctl01_Imagelibrary2_ajaxPanelPaging",PanelID:"ctl01_Imagelibrary1_LoadingPanelFull"}]},{InitControlID : "ctl01_Imagelibrary2_pager", UpdatedControls : [{ControlID:"ctl01_Imagelibrary2_ajaxPanelDataList",PanelID:"ctl01_Imagelibrary1_LoadingPanelFull"}]},{InitControlID : "ctl01_Imagelibrary2_lnkPage" |