I worked on slickgrid with header row filter(each column),pagination option is not available in the example grid. Is it possible to add pagination with header row filter.
Regards, Rajendhiran M
I worked on slickgrid with header row filter(each column),pagination option is not available in the example grid. Is it possible to add pagination with header row filter.
Regards, Rajendhiran M
As @ghiscoding mentioned, you just need to fit the pager block in your page.
<script src="../path/to/SlickGrid/controls/slick.pager.js"></script>
<div id="pager" style="width:100%;height:20px;"></div>
grid = new Slick.Grid( "#myGrid", dataView, columns, options);
var pager = new Slick.Controls.Pager(dataView, grid, $("#pager"));
Done.