html - How to insert horizontal scroll bar at the top above listview -
html - How to insert horizontal scroll bar at the top above listview -
i able show horizontal scroll bar @ bottom of listview, can figure out how set @ top.
here code:
<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>
by default, browser display scroll bars on bottom , right side of area needs scrolling. in order scroll bars on top or left, you'd have create mimics opposite scroll bar.
there great explanation , illustration of how here: horizontal scrollbar on top , bottom of table
there jquery plugins mentioned in above post same: https://github.com/sniku/jquery-doublescroll
html asp.net listview scrollbar
Comments
Post a Comment