Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

0
Votes

I have an error: 

TypeError: this.parent.headerModule.getMovableHeader is not a function

getColumn(columnName: string) {
return this.treegrid.getColumnByField(columnName);
}

contextMenuClick(arg?: any) {
if(arg) {
this.actionToDo = arg.item.properties.id;
}
if(this.actionToDo === 'EditCol' || this.actionToDo === 'NewCol' || this.actionToDo === 'DeleteCol') {
this.onOpenDialog(arg)
} else {
const column = this.getColumn(this.columnNameForManipulations);
column.isFrozen = true;
this.treegrid.refreshColumns();
}

}



core.mjs:6484 ERROR TypeError: this.parent.headerModule.getMovableHeader is not a function

    at Scroll.setScrollLeft (ej2-grids.es2015.js:12516)

    at Observer.notify (ej2-base.es2015.js:2325)

    at Grid.notify (ej2-base.es2015.js:6783)

    at HeaderRender.renderTable (ej2-grids.es2015.js:4058)

    at Render.render (ej2-grids.es2015.js:5595)

    at Grid.gridRender (ej2-grids.es2015.js:16602)

    at Grid.render (ej2-grids.es2015.js:14044)

    at Grid.refresh [as componentRefresh] (ej2-base.es2015.js:6636)

    at Grid.freezeRefresh (ej2-grids.es2015.js:16723)

    at Grid.refreshColumns (ej2-grids.es2015.js:17215)