Reacting to external changes through ng-changes
The following example shows a mechanism to bind an external UI action that causes ng-changes to trigger and then this cascades down through our updating API data to the grid https://www.ag-grid.com/javascript-grid-data-update/
https://next.plnkr.co/edit/bdkafZT1mKTjuKe7dFWG?p=info&preview
Angular build stack error
This isn't a problem with ag-grid this a problem with angular. The original angular problem is detailed here:
https://github.com/ag-grid/ag-grid-angular/issues/184
and the underlining CLI issue is detailed here:
https://github.com/angular/angular-cli/issues/5618
The solution is to upgrade you angular dependencies, specifically the CLI.
We have an example here to demonstrate how to configure your project:
https://github.com/ag-grid/ag-grid-angular-example/tree/master/angular-cli
with its package.json here:
https://github.com/ag-grid/ag-grid-angular-example/blob/master/angular-cli/package.json
If that's not an option as a workaround you can use:
node --stack_size=4048 node_modules/.bin/ng build --prod
Comments
0 comments
Please sign in to leave a comment.