Jqgrid infinite paging scrolling

I was wondering if there is a way to implement infinite scroll paging with jqgrid and its tablet extension? I know you can implement regular paging with jqgrid, but do I need another tool for infinite scrolling?

+3


source to share


3 answers


Not long ago, but you can find a sample under http://trirand.com/blog/jqgrid/jqgrid.html under "new in 3.4"



and newer version under virtual scrolling 3.7

+1


source


Use the jqgrid: true scrolling option for infinite scroll pages.

.jqGrid({
            datatype : "local",
            data : JSONData,
            height : ($(window).height() - 250),
            width : ($(window).width() - 32),
            scroll : true, 
            rowNum:20, // the number of row to be displayed the first time
...
..
});

      



check http://www.trirand.com/jqgridwiki/doku.php?id=wiki:options see scroll - option.

0


source


.jqGrid ({rollout: 1,});

by setting the scroll option

0


source







All Articles