我正在考虑将 ag-Grid 用于我们的目的。我们需要将大量行(约 50,000 行)加载到 ag-Grid。此外,我们必须显示带有分组的行(参见随附的屏幕截图)。但是,在添加具有分组属性的“ag-Grid”之后,网格加载非常缓慢,有时甚至是堆叠的。展开/折叠选项也很慢。
this.gridOptions = <GridOptions>{
rowData:this.rowData,
columnDefs:this.columnDefs,
enableFilter: true,
maxBlockInCache: 100,
cacheOverflowSize:50,
cacheBlockSize:50,
enableRtl: true,
enableColResize:true,
suppressAutoSize:true,
enableSorting:true,
rowSelection: 'multiple',
rowDeselection:true,
enableStatusBar:true,
alwaysShowStatusBar:true,
enableRangeSelection:true,
rowGroupPanelShow: "always",
animateRows: true,
groupDefaultExpanded: -1,
autoGroupColumnDef: { field: "city" },
columnTypes: this.columnTypes
};
您能否提供帮助或获得解决问题的任何想法?