Hi Benny,
Greetings from Syncfusion support.
To include additional functionalities in the Grid like, Filtering, Grouping, Paging, etc. you need to inject the required modules in your angular application. We have demonstrated this in the below code snippet for including the Filtering, Grouping, Paging and Sorting functionality in the Grid,
|
import { Component, ViewChild, OnInit } from '@angular/core';
import { FilterService, FilterType, SortService, PageService, GroupService } from '@syncfusion/ej2-angular-grids';
@Component({
selector: 'app-root',
templateUrl: 'app.component.html',
styleUrls: ['app.component.css'],
providers: [FilterService, GroupService, PageService, SortService]
}) |
We have prepared a sample based on this for your reference which you can find below,
For more information please check the below help documentation,
Please get back to us if you require any further assistance.
Regards,
Sujith R