我不知道这是一个很简单的问题还是很难,但今天我遇到了这个问题。
我可以Ajax Accordion
控制我的母版页,其中包含三个[带有Master ST ERPPanes
文本的灰色方形区域是内容页]。
现在,我的问题是,每当我在用户详细信息窗格中选择链接表示为树时,它会自行折叠并自动打开ST-ERP 模块窗格。这让我感到沮丧......问题应该是什么朋友......关于SO的同样问题但不能帮助我:Ajax Accordion Loses Current Pane
这是我的代码片段:
<ajax:Accordion ID="UserAccordion" runat="server" SelectedIndex="0" HeaderCssClass="accordionHeader"
HeaderSelectedCssClass="accordionHeaderSelected" ContentCssClass="accordionContent"
FadeTransitions="true" SuppressHeaderPostbacks="true" TransitionDuration="250"
FramesPerSecond="40" RequireOpenedPane="false" AutoSize="None"
Width="220px">
<Panes>
<ajax:AccordionPane ID="AccordionPane1" runat="server">
<Header>
<a href="#" class="href">ST-ERP Modules</a></Header>
<Content>
<asp:Panel ID="UserReg" runat="server">
<asp:TreeView runat="server" ID="treeMainMenu" DataSourceID="SiteMapDataSource1"
NodeIndent="10" Width="150px" OnTreeNodeDataBound="treeMainMenu_TreeNodeDataBound">
<ParentNodeStyle Font-Bold="False"></ParentNodeStyle>
<HoverNodeStyle ForeColor="#447BD4" Font-Underline="True"></HoverNodeStyle>
<SelectedNodeStyle HorizontalPadding="0px" ForeColor="#DD5555" VerticalPadding="0px"
Font-Bold="True" Font-Underline="True"></SelectedNodeStyle>
<NodeStyle NodeSpacing="0px" HorizontalPadding="0px" ForeColor="#447BD4" VerticalPadding="0px"
Font-Size="8pt" Font-Names="Verdana"></NodeStyle>
</asp:TreeView>
</asp:Panel>
</Content>
</ajax:AccordionPane>
<ajax:AccordionPane ID="AccordionPane2" runat="server">
<Header>
<a href="#" class="href">User Detail</a></Header>
<Content>
<asp:Panel ID="Panel1" runat="server">
<asp:TreeView runat="server" ID="TreeView1" DataSourceID="SiteMapDataSource2" NodeIndent="10"
Width="150px">
<ParentNodeStyle Font-Bold="False"></ParentNodeStyle>
<HoverNodeStyle ForeColor="white" Font-Underline="True"></HoverNodeStyle>
<SelectedNodeStyle HorizontalPadding="0px" ForeColor="#DD5555" VerticalPadding="0px"
Font-Bold="True" Font-Underline="True"></SelectedNodeStyle>
<NodeStyle NodeSpacing="0px" HorizontalPadding="0px" ForeColor="White" VerticalPadding="0px"
Font-Size="8pt" Font-Names="Verdana"></NodeStyle>
</asp:TreeView>
</asp:Panel>
</Content>
</ajax:AccordionPane>
<ajax:AccordionPane ID="AccordionPane3" runat="server">
<Header>
<a href="#" class="href">Job Details</a>
</Header>
<Content>
<asp:Panel ID="Panel2" runat="server">
ddddddddddddd</asp:Panel>
</Content>
</ajax:AccordionPane>
</Panes>
</ajax:Accordion>