如何在listview上方插入水平滚动条

时间:2014-06-23 16:07:05

标签: html asp.net listview scrollbar

我可以在ListView的底部显示一个水平滚动条,但我可以弄清楚如何在顶部设置它。

这是我的代码:

<div style =" overflow :auto ;width:auto; height:auto">
//omitted
 <asp:ListView ID="ListView1" runat="server" OnSelectedIndexChanged="ListView1_SelectedIndexChanged" InsertItemPosition="LastItem" OnPagePropertiesChanged="ListView1_PagePropertiesChanged">
//omitted
</asp:ListView>
</div>

1 个答案:

答案 0 :(得分:1)

默认情况下,浏览器只会在需要滚动的区域的底部和右侧显示滚动条。为了获得顶部或左侧的滚动条,您必须创建一些基本上模仿相反滚动条的内容。

这里有一个很好的解释和示例: horizontal scrollbar on top and bottom of table

上面的文章中提到的jQuery插件也是如此: https://github.com/sniku/jQuery-doubleScroll