Hi,
I'm using virtual scrolling and pageSize 50 on my grid to increase performance. But now I also want to enable grouping but then it only groups the items in the page not all items.
How can I make that all items are grouped?
These are the settings I'm using:
$("#grid").kendoGrid({
autoBind: false,
selectable: "multiple",
dataSource: {
schema: {
model: {
fields: {
}
}
}
,
pageSize: 50
},
height: 'auto',
filterable: true,
groupable: true,
scrollable: {
virtual: true
},
pageable: {
numeric: false,
previousNext: false
},
sortable: true,
columns:
});