我在选项卡容器中使用下拉扩展器,它总是在页面加载时展开。它仅在单击文本框后折叠。它在选项卡容器之外运行良好,并且仅在最新浏览器中发生。
如何在每次页面加载时折叠下拉扩展器?我需要在页面加载事件中手动折叠它吗?
请告诉我我错了什么以及它如何在代码后面或 javascript 处崩溃?
我在 vs 2005 中使用 .Net 2.0 Ajax 扩展。
下面是我的代码。
<ajaxToolkit:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0">
<ajaxToolkit:TabPanel ID="TabPanel1" runat="server" HeaderText="TabPanel1">
<ContentTemplate>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<ajaxToolkit:DropDownExtender ID="DropDownExtender1" DropDownControlID="ListBox1" runat="server"
TargetControlID="TextBox1">
</ajaxToolkit:DropDownExtender>
<asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">
<asp:ListBox ID="ListBox1" runat="server">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
</asp:ListBox></asp:Panel>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
</ContentTemplate>
</ajaxToolkit:TabPanel>
<ajaxToolkit:TabPanel ID="TabPanel2" runat="server" HeaderText="TabPanel2">
</ajaxToolkit:TabPanel>
<ajaxToolkit:TabPanel ID="TabPanel3" runat="server" HeaderText="TabPanel3">
</ajaxToolkit:TabPanel>
</ajaxToolkit:TabContainer>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
<ajaxToolkit:DropDownExtender ID="DropDownExtender2" DropDownControlID="ListBox2" runat="server" TargetControlID="TextBox2">
</ajaxToolkit:DropDownExtender>
<asp:Panel ID="Panel2" runat="server" Height="50px" Width="125px">
<asp:ListBox ID="ListBox2" runat="server">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
</asp:ListBox></asp:Panel>