I'm using jquery bootgrid to display some data (http://www.jquery-bootgrid.com/), could anyone help to add horizontal scroll bar to this grid?
I tried to put it into div with overflow-x style, but it scrolls navigation and paging together.
If it not possible, could you recommend free grids for ASP .NET MVC with has this feature?
Try to set the CSS class bootgrid-table with these :
display: block;
width: 50px;
overflow-x: scroll;
I set the width to 50px for a test, but it maybe could be left to what it is, 100%. Though, due to data collapsing with "...", not sure it would work appart removing this too.