Hi again,
Is there a way to remove the scrollbar?
Thanks
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!
Most helpful comment
First remove
heightoption, then the grid will be stretched by the content.And remove scrollbars with the following css
See the example http://jsfiddle.net/tabalinas/967y0t7s/