Contains Angular 2 components for the wijmo.grid.grouppanel module.
wijmo.angular2.grid.grouppanel is an external TypeScript module that can be imported to your code using its ambient module name. For example:
import * as wjPanel from 'wijmo/wijmo.angular2.grid.grouppanel'; import * as wjGrid from 'wijmo/wijmo.angular2.grid'; @Component({ directives: [wjGrid.WjFlexGrid, wjPanel.WjGroupPanel], template: ` <wj-group-panel [grid]="flex" [placeholder]="'Drag columns here to create groups.'"> </wj-group-panel> <wj-flex-grid #flex [itemsSource]="data"> </wj-flex-grid>`, selector: 'my-cmp', }) export class MyCmp { data: any[]; }
Contains Angular 2 components for the wijmo.grid.grouppanel module.
wijmo.angular2.grid.grouppanel is an external TypeScript module that can be imported to your code using its ambient module name. For example: