How can I get all the rows of ag-grid?
I don’t think there is such a method but you can make your own: getAllRows() { let rowData = []; this.gridApi.forEachNode(node => rowData.push(node.data)); return rowData; }
I don’t think there is such a method but you can make your own: getAllRows() { let rowData = []; this.gridApi.forEachNode(node => rowData.push(node.data)); return rowData; }
You can use angular routers replaceUrl flag to do this. See api docs for more details here this.router.navigate([‘/view’], { replaceUrl: true });
I think you should read those two posts about Ngrx store: Angular Service Layers: Redux, RxJs and Ngrx Store – When to Use a Store And Why? Ngrx Store – An Architecture Guide If the first one explains the main issues solved by Ngrx Store, it also quote this statement from the React How-To “that … Read more