锁定/冻结列表视图中表的头

本文关键字:视图 冻结 列表 锁定 | 更新日期: 2023-09-27 18:31:43

我在div中有一个ListView。div 的最大高度为 240px,因此当 ListView 达到一定数量的行数时,div 将滚动。

我希望列表视图中的头行始终保持在div 的顶部。我已经玩了一段时间了,并查看了以下 http://blogs.interfacett.com/dan-wahlins-blog2007-8-2-video-using-the-new-asp-net-listview-control-html-and-freezing-the-header,但遗憾的是我没有运气。我按照视频教程进行操作,但是(正如页面上的唯一评论所说)它对我不起作用。

我正在使用,并且更愿意继续使用 asp.net 3.5。

如果可能的话,我希望解决方案是一个纯粹的CSS解决方案,但如果JavaScript是必要的,那就这样吧。

这是我的 html 代码

<html code>
<asp:ListView ID="UserListView" runat="server" DataSourceID="ListViewDataSource"
                ItemPlaceholderID="UserListViewContent" EnableModelValidation="True" DataKeyNames="ID,Reference,Type"
                OnPreRender="UserListView_PreRender" OnSelectedIndexChanged="UserListView_SelectedIndexChanged">
                <LayoutTemplate>                    
                    <div id="List" class="ListViewStyle">
                        <table width="600px" cellspacing="0" cellpadding="0">
                            <thead>
                                <tr class="tableHeaderRow" style="height: 24px; text-align:left" >
                                    <th style="width: 45px">
                                        <asp:LinkButton ID="LinkButton1" runat="server" Text="ID" CommandName="Sort" CommandArgument="ID"
                                            CausesValidation="false"></asp:LinkButton>
                                    </th>
                                    <th style="width: 45px">
                                        <asp:LinkButton ID="LinkButton2" runat="server" Text="User" CommandName="Sort" CommandArgument="Reference"
                                            CausesValidation="false"></asp:LinkButton>
                                    </th>
                                    <th style="width: 75px">
                                        <asp:LinkButton ID="LinkButton3" runat="server" Text="Status" CommandName="Sort" CommandArgument="Status"
                                            CausesValidation="false"></asp:LinkButton>
                                    </th>
                                    <th style="width: 100px">
                                        <asp:LinkButton ID="LinkButton4" runat="server" Text="Level" CommandName="Sort" CommandArgument="Type"
                                            CausesValidation="false"></asp:LinkButton>
                                    </th>
                                    <th style="width: 130px">
                                        <asp:LinkButton ID="LinkButton5" runat="server" Text="First Names" CommandName="Sort" CommandArgument="FirstNames"
                                            CausesValidation="false"></asp:LinkButton>
                                    </th>
                                    <th style="width: 125px">
                                        <asp:LinkButton ID="LinkButton6" runat="server" Text="Surname" CommandName="Sort" CommandArgument="Surname"
                                            CausesValidation="false"></asp:LinkButton>
                                    </th>
                                    <th style="width: 80px">
                                    </th>
                                </tr>
                            </thead>
                            <tbody runat="server" id="UserListViewContent">                                    
                            </tbody>
                        </table>
                    </div>
                </LayoutTemplate>
                <AlternatingItemTemplate>
                    <tr class="altRowStyle" style="height: 24px">
                        <td style="width: 45px; overflow:hidden;">
                            <asp:Label ID="IDLabel" runat="server" Text='<%# Eval("ID") %>' />
                        </td>
                        <td style="width: 45px; overflow:hidden;">
                            <asp:Label ID="ReferenceLabel" runat="server" Text='<%# Eval("Reference") %>' />
                        </td>
                        <td style="width: 75px; overflow:hidden;">
                            <asp:Label ID="StatusLabel" runat="server" Text='<%# Eval("Status") %>' />
                        </td>
                        <td style="width: 100px; overflow:hidden;">
                            <asp:Label ID="TypeLabel" runat="server" Text='<%# Eval("Type") %>' />
                        </td>
                        <td style="width: 130px; overflow:hidden;">
                            <asp:Label ID="FirstNamesLabel" runat="server" Text='<%# Eval("FirstNames") %>' />
                        </td>
                        <td style="width: 125px; overflow:hidden;">
                            <asp:Label ID="SurnameLabel" runat="server" Text='<%# Eval("Surname") %>' />
                        </td>
                        <td style="width: 80px; overflow:hidden;">
                            <asp:Button ID="ItemTemplateButton" runat="server" Text="Select" CssClass="standardButton"
                                CommandName="Select"></asp:Button>
                        </td>
                    </tr>
                </AlternatingItemTemplate>
                <ItemTemplate>
                    <tr class="rowStyle" style="height: 24px">
                        <td style="width: 45px; overflow:hidden;">
                            <asp:Label ID="IDLabel" runat="server" Text='<%# Eval("ID") %>' />
                        </td>
                        <td style="width: 45px; overflow:hidden;">
                            <asp:Label ID="ReferenceLabel" runat="server" Text='<%# Eval("Reference") %>' />
                        </td>
                        <td style="width: 75px; overflow:hidden;">
                            <asp:Label ID="StatusLabel" runat="server" Text='<%# Eval("Status") %>' />
                        </td>
                        <td style="width: 100px; overflow:hidden;">
                            <asp:Label ID="TypeLabel" runat="server" Text='<%# Eval("Type") %>' />
                        </td>
                        <td style="width: 130px; overflow:hidden;">
                            <asp:Label ID="FirstNamesLabel" runat="server" Text='<%# Eval("FirstNames") %>' />
                        </td>
                        <td style="width: 125px; overflow:hidden;">
                            <asp:Label ID="SurnameLabel" runat="server" Text='<%# Eval("Surname") %>' />
                        </td>
                        <td style="width: 80px; overflow:hidden;">
                            <asp:Button ID="ItemTemplateButton" runat="server" Text="Select" CssClass="standardButton"
                                CommandName="Select"></asp:Button>
                        </td>
                    </tr>
                </ItemTemplate>
                <SelectedItemTemplate>
                    <tr class="selectedRowStyle" style="height: 24px">
                        <td style="width: 45px; overflow:hidden;">
                            <asp:Label ID="IDLabel" runat="server" Text='<%# Eval("ID") %>' />
                        </td>
                        <td style="width: 45px; overflow:hidden;">
                            <asp:Label ID="ReferenceLabel" runat="server" Text='<%# Eval("Reference") %>' />
                        </td>
                        <td style="width: 75px; overflow:hidden;">
                            <asp:Label ID="StatusLabel" runat="server" Text='<%# Eval("Status") %>' />
                        </td>
                        <td style="width: 100px; overflow:hidden;">
                            <asp:Label ID="TypeLabel" runat="server" Text='<%# Eval("Type") %>' />
                        </td>
                        <td style="width: 130px; overflow:hidden;">
                            <asp:Label ID="FirstNamesLabel" runat="server" Text='<%# Eval("FirstNames") %>' />
                        </td>
                        <td style="width: 125px; overflow:hidden;">
                            <asp:Label ID="SurnameLabel" runat="server" Text='<%# Eval("Surname") %>' />
                        </td>
                        <td style="width: 80px; overflow:hidden;">
                            <asp:Button ID="ItemTemplateButton" runat="server" Text="Select" CssClass="standardButton"
                                CommandName="Select"></asp:Button>
                        </td>
                    </tr>
                </SelectedItemTemplate>
            </asp:ListView>

这是 CSS

<css code>
.ListViewStyle
{
    width: 620px;
    max-height: 240px;
    height: expression( scrollHeight < 240 ? 'auto' : '240px' );
    overflow: auto;
    border-left: 1px solid #EEF5FE;
}
.ListViewStyle th
{
    position:relative;
}

任何和所有的帮助将不胜感激。

干杯

锁定/冻结列表视图中表的头

你可以尝试这样的事情:

.ListViewStyle
{
    width: 620px;
    max-height: 240px;
    height: expression( scrollHeight < 240 ? 'auto' : '240px' );
    overflow: auto;
    border-left: 1px solid #EEF5FE;
    position:relative;
    padding-top: 24px;
}
.ListViewStyle thead
{
    position:absolute;
    top: 0;
}

应该将头部定位在包装div 的顶部,并向下填充列表的其余部分,这样它就不会被 thead 遮挡。

编辑:这不起作用。不好意思。

首先,您可能希望摆脱表标签元素,改用 DIV。然后:

<style>
.myHeader
{
    position: absolute;
}
</style>
<script>
   $(document).ready(function(){
       $("#my240pxcontainer").on('scroll', function(){
           $("#myHeader").css("top", $("#myHeader").position().top);
       });
   });
</script>

希望,这会有所帮助。