Jsgrid: I'm using pagination, Can I remove the scrollbar?

Created on 29 Dec 2015  路  3Comments  路  Source: tabalinas/jsgrid

Hi again,
Is there a way to remove the scrollbar?
Thanks

question

Most helpful comment

First remove height option, then the grid will be stretched by the content.

And remove scrollbars with the following css

.jsgrid-grid-header,
.jsgrid-grid-body{
  overflow: auto;
}

See the example http://jsfiddle.net/tabalinas/967y0t7s/

All 3 comments

First remove height option, then the grid will be stretched by the content.

And remove scrollbars with the following css

.jsgrid-grid-header,
.jsgrid-grid-body{
  overflow: auto;
}

See the example http://jsfiddle.net/tabalinas/967y0t7s/

Awesome. Thanks for the help!

You are welcome!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jufei picture jufei  路  3Comments

julmarci picture julmarci  路  4Comments

gianlucaqo picture gianlucaqo  路  4Comments

eliasuardi picture eliasuardi  路  3Comments

Julian-B90 picture Julian-B90  路  4Comments