I am working in "jquery.jqGrid-4.4.1" version of jqgrid. I have huge data to show in grid that's why I need dynamic loading on scroll. I set scroll to 1 its working fine without grouping. Following is the example of using scroll but grouping is set to false.
{
....
rownum: 30,
scroll: 1,
grouping: false,
groupingView : {
groupField : ['BillTitle'],
groupColumnShow : [true],
groupText : ['<b>{0}</b>'],
groupCollapse : false,
groupOrder: ['asc'],
groupSummary : [true],
groupDataSorted : true
},
}
On the other end I need to use grouping of jqgrid, when I set grouping to true dynamic loading of scroll not working. Following is not working but I need both functionality.
{
....
rownum: 30,
scroll: 1,
grouping: true,
groupingView : {
groupField : ['BillTitle'],
groupColumnShow : [true],
groupText : ['<b>{0}</b>'],
groupCollapse : false,
groupOrder: ['asc'],
groupSummary : [true],
groupDataSorted : true
},
}
Please help me. Your help should be highly appreciated.