0

所以我有一个表,其中一行 (tr) 有一个 AJAX 工具包 PopupControlExtender。这是代码 -

<table id="fixedHeaderTable" border="1" cellspacing="0" runat="server">
    <tr id="headerRowFixedTable" style="height: 82px;" runat="server">
        <span id="lblColumnHeader" runat="server" />
        <img id="imgFilter" alt="Filter" src="../../App_Themes/Images/filter.png" onclick="showFilter('')" runat="server" />
        <asp:TextBox ID="txtCombo" runat="server" Visible="false" ReadOnly="true" Width="200" Font-Size="X-Small"/>
        <cc1:PopupControlExtender ID="PopupControlExtender111" runat="server" TargetControlID="txtCombo" PopupControlID="Panel111" Position="Top" />
        <asp:Panel ID="Panel111" runat="server" ScrollBars="Auto" style="z-index:152; background-color:Gray;" BorderColor="Gray" BorderWidth="1">
            <asp:CheckBoxList ID="chkList" runat="server" Height="20"/>
            <asp:Button ID="btnFilter" Text="Filter" runat="server" onclick="btnFilter_Click" />
        </asp:Panel>
    </tr>
</table>

问题是 PopupControlExtender 的高度保持在打开的表格行的范围内。如何设置该控件的样式,以便在它展开时,展开的面板不受表格行限制的影响,并且它可以比该行更大(更高的高度)?

4

1 回答 1

0

使用绝对定位有效。

于 2013-06-14T17:27:01.410 回答