How to create bootstrap responsive table with horizontal scrollbar always visible.
I have a large table. For mobile users this can be annoying because they have to go all the way to the bottom of the table to scroll right. Is it possible to make the scrollbar always visible?
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CssClass="gridview table-responsive" AlternatingRowStyle-CssClass="even" GridLines="None">
<Columns>
<asp:BoundField DataField="COL1" SortExpression="COL1" />
<asp:BoundField DataField="COL2" SortExpression="COL2" />
<asp:BoundField DataField="COL3" SortExpression="COL3" />
</Columns>
</asp:GridView>
Code in aspx.cs page
GridView1.HeaderRow.TableSection = TableRowSection.TableHeader;
Thanks so much in advance