使用ag-grid版本9.1.0
gridOptions = {
enableColResize: true,
enableSorting: true,
enableFilter: true,
suppressMenuHide: true,
rowBuffer : 200,
columnDefs: columnDefs,
rowData: Columns,
onRowClicked: onRowClicked,
getRowStyle: getRowStyle,
onGridReady: function(event) {
vm.gridOptions.api.ensureIndexVisible(scrollId, null);
//vm.gridOptions.api.ensureColumnVisible(scrollId);
}
};
这是网格初始化。 onGridReady,我称此为sureIndexVisible,但是当我打开网格时,它不会自动向下滚动。它仅显示顶部,并且不会滚动。确保scrollId存在。如何使其自动滚动?