Hi,
i have an issue when i'm trying to add a custom component in a treeGridComponent's toolbar
TypeError: Cannot read property 'concat' of undefined
...ode_modules\@syncfusion\ej2-grids\src\grid\actions\toolbar.js line 180
Toolbar.prototype.addReactToolbarPortals = function (args) {
if (this.parent.isReact && args) {
this.parent.portals = this.parent.portals.concat(args); //here
this.parent.renderTemplates();
}
};
when i modify locally by this, it works fine :
Toolbar.prototype.addReactToolbarPortals = function (args) {
if (this.parent.isReact && args) {
this.parent.portals = (this.parent.portals || []).concat(args); //here
this.parent.renderTemplates();
}
};
i'm using
"@syncfusion/ej2-grids": "19.2.47",
Can you fix this package please ?
Thanks in advance