Grid Wont Show Addition Configuration

Hi,
I am trying use the Grid for displaying data from a datasource. While going through your documentation for the Grid component I could not have it display advanced options like Filtering, Paging, Sorting or Grouping. I was wondering if there iare any of licensing  restrictions or I am just not doing it right.

Thanks
Benny

Attachment: Screen_9e99449a.zip

1 Reply

SK Sujith Kumar Rajkumar Syncfusion Team March 6, 2020 11:45 AM UTC

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 


Loader.
Up arrow icon