Posted 23 March 2020, 7:55 am EST - Updated 3 October 2022, 4:57 pm EST
Hi,
I have used below version in Angular 8 application
Wijmo: 5.20191.612
I faced this issue only in Firefox browser, others (IE, EDGE, Chrome) is working fine.
.
In HTML:
<wj-flex-grid #formsInfoFlexGrid id=“formsInfoGrid” [headersVisibility]=“‘Column’” [isReadOnly]=“true” [itemsSource]=“data” [selectionMode]=“‘None’” (itemsSourceChanged)=“sourceChangedGrid(formsInfoFlexGrid)” [groupHeaderFormat]=“formNameHeaderFormat”>
In TS:
//Wijmo
import * as wjcCore from ‘wijmo/wijmo’;
import * as wjcGrid from ‘wijmo/wijmo.grid’;
import * as wjFilter from ‘wijmo/wijmo.angular2.grid.filter’;
import * as wjcInput from ‘wijmo/wijmo.input’;
loadFormsCollectionView(formsWijmoArrayData: any) {
this.data = new wjcCore.CollectionView();
this.data = new wjcCore.CollectionView(formsWijmoArrayData);
this.data.groupDescriptions.push(new wjcCore.PropertyGroupDescription(‘HeaderFormName’));
this.formNameHeaderFormat = ‘{value} ({count} items)’;
this.data.pageSize = 10;
}
// Default collapse all the groups in grid sourceChangedGrid(flex: wjcGrid.FlexGrid) { flex.collapseGroupsToLevel(0); }
Please refer screen shot,
Thanks,
Ramu