Hello all,
I've read some similar posts regarding some of the other atlas controls, but with no real solution. I have an accordion control w/ two accordion panes. Each pane has a few asp controls on it like Labels, Buttons etc. Everything works fine until I resize the browser window. This causes all of the images and most of the controls that are not within div & span tags to disappear. After the resizing, once a different accordion pane is selected, and just before the transistion to the newly selected pane, the content reappears and works fine again until the browser is resized.
Does this sound familiar to anyone? Does anyone know if there is atlas-related javascript that might be meddling in my affairs? Thanks in advance
Matt
1 <atlas:scriptmanager id="ScriptManager" runat="server" enablepartialrendering="true" />
2 <cc1:Accordion ID="Accordion1" runat="server"
3 Height="275px" Width="127px" SelectedIndex="0" OnLoad="Accordion_Load"
4 AutoSize="Fill" EnableViewState="true" FadeTransitions="true" TransitionDuration="250" FramesPerSecond="40" CssClass="accmain">
5 <Panes>
6
7 <cc1:AccordionPane ID="AccordionPane1" runat="server"
8 HeaderCssClass="accheader" ContentCssClass="acccontent">
9
10 <Header>Current Weather</Header>
11 <Content>
12
13 <div class="weatherlogo">
14 <image id="WCLogo" />
15 </div>
16
17 <atlas:UpdatePanel ID="UpdatePanel2" Mode="Always" runat="server">
18 <ContentTemplate>
19 <asp:Image ID="WeatherImg" runat="server" />
20
21 <div class="cityname">
22 <asp:Label ID="LocId" runat="server"></asp:Label>
23 </div>
24
25 <h5>Temp: Feels Like:</h5>
26 <div class="temperature">
27 <span style="padding-right: 10px; padding-left: 8px;">
28 <asp:Label ID="TempId" runat="server"></asp:Label>
29 </span>
30 <span style="padding-left: 10px;">
31 <asp:Label ID="FlikId" runat="server"></asp:Label>
32 </span>
33
34 </div>
35 </ContentTemplate>
36 </atlas:UpdatePanel>
37 </Content>
38
39 </cc1:AccordionPane>
40
41 <cc1:AccordionPane ID="AccordionPane2" runat="server"
42 HeaderCssClass="accheader" ContentCssClass="acccontent">
43
44 <Header>Weather by ZIP</Header>
45 <Content>
46 <asp:Image ID="ZipImage" CssClass="zipimage" runat="server" ImageUrl="~/App_Themes/Granite2/Images/Sunset2.jpg" />
47 <br />
48
49 <div id="weatherBox">
50 <fieldset style="width: 100px;">
51 <legend>Traveling?</legend>
52 <br />
53 <label id="ZipLabel">Enter a ZIP Code:</label>
54 <br />
55 <br />
56 <atlas:UpdatePanel ID="UpdatePanel1" Mode="conditional" runat="server">
57 <Triggers>
58 <atlas:ControlEventTrigger ControlID="ZipButton" EventName="Click" />
59 </Triggers>
60 <ContentTemplate>
61 <asp:TextBox ID="ZipText" runat="server" Width="35"></asp:TextBox>
62 <asp:Button ID="ZipButton" SkinID="searchButton"
63 runat="server" Text="Submit"
64 OnClick="ZipButton_Click" OnClientClick="fireHiddenButton();" />
65 </ContentTemplate>
66 </atlas:UpdatePanel>
67 </fieldset>
68 </div>
69 </Content>
70
71 </cc1:AccordionPane>
72 </Panes>
73 </cc1:Accordion>