We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d7b056 commit 0dfb67fCopy full SHA for 0dfb67f
projects/igniteui-angular/src/lib/grids/grid/grid.component.ts
@@ -333,7 +333,9 @@ export class IgxGridComponent extends IgxGridBaseComponent implements IGridDataB
333
set groupingExpansionState(value) {
334
this._groupingExpandState = cloneArray(value);
335
this.groupingExpansionStateChange.emit(this._groupingExpandState);
336
- this.notifyChanges();
+ if (this.gridAPI.grid) {
337
+ this.cdr.detectChanges();
338
+ }
339
}
340
341
/**
0 commit comments