This is a migrated thread and some comments may be shown as answers.

Groupable/Scrollable virtual/page size

1 Answer 456 Views
Grid
This is a migrated thread and some comments may be shown as answers.
NS
Top achievements
Rank 1
NS asked on 25 Sep 2017, 07:34 AM

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:            
    });

1 Answer, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 26 Sep 2017, 04:06 PM
Hello,

Virtual scrolling with grouping is not supported as pointed in the respective section of the documentation:
http://docs.telerik.com/kendo-ui/controls/data-management/grid/appearance#limitations-for-virtual-scrolling

However, since R3 2017 release a new Infinite(Endless) Scrolling feature for the grid was implemented which works with grouping enabled without problems. More information about the new functionality is available below:
http://docs.telerik.com/kendo-ui/controls/data-management/grid/appearance#endless-scrolling

An online example can be seen at the following link:
http://demos.telerik.com/kendo-ui/grid/endless-scrolling-local

Regards,
Pavlina
Progress Telerik
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
Grid
Asked by
NS
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Share this question
or