|
App.component.html
<div class="control-section">
<button (click)="changegroup()">ungroup</button>
<button (click)="changegroup1()">group</button>
<ejs-grid #grid [dataSource]='data'>
<e-columns>
....
</e-columns>
</ejs-grid>
-------------------------------------------------
App.component.ts
export class AppComponent { ngOnInit(): void {
this.data = inventoryData;
this.groupOptions = { columns: ['Country'],showGroupedColumn: true };
this.pageSettings = { pageCount: 5 };
}
changegroup(){
this.grid.clearGrouping();
}
changegroup1(){
this.grid.groupColumn('Inventor');
} |