I'm implementing ag-grid enterprise for serverside grouping, sorting, loading etc.. I have problem to refresh the view, for eg. when I scroll to the bottom, and i click sort by certain column, scroll remains at the bottom, so first data gets loaded at the bottom of the table, and when I scroll back up i get inverted sort or whatever u could call it. What im expecting to happen when i click on sort, is to whole view of ag-grid to get to previous state, refresh/reinitialize with scroll on top.
Here is the official example, where u can see how ag-grid is getting reinitalized when rows get sorted. When i copy exact code from this plunkr into angular, it works as it should, until i change rowDataType to server side
rowDataType = 'serverSide';
params.api.setServerSideDatasource(dataSource);
As soon as I do that code in angular stops reinitiating on sorting as it should and as it previously did. Plunkr works just fine with or without 'serverSide'. So since code is exact same, I'm assuming im missing some import or smth??**
Another question so i dont spam around, in case anyone passing by knows. How to delete doubled columns after grouping. When i group by certain column, I get its duplicate as generated 'group' column, so i get same data in 2 columns, i wouldnt mind removing either of them. Eg:
this.gridApi.setRowData(rowData);
– h_w