Posted 24 May 2020, 6:34 am EST
Hello, I am showing pivot panel with Angular Material dialog and when I show it every other time but the first time - I got the error:
TypeError: Cannot read property ‘refresh’ of nullWjPivotPanel.PivotPanel.refresh
My html:
<ng-template #pivotPanelTmpl>
<wj-pivot-panel [engine]=“pivotEngine”>
Close
@ViewChild('pivotPanelTmpl') pivotPanelTmpl: TemplateRef<any>;
public showPivotPanel(): void {
this.dialog.open(this.pivotPanelTmpl);
};