简体   繁体   中英

Does ag-grid has Virtual Scroll?

Does anyone know if ag-grid has virtual-scroll built in? I know it does have infinite scroll, but the app i'm building will have a lot of data..

ag-grid has virtual scroll in all rowModels .

Virtual scroll and infinite scroll are not the same thing like suggested in the other answer.

Virtual scroll keeps only the rows currently viewed by the user in the DOM which tremendously improves the the performance of the application.

In an infinite scrolling table, if virtual scroll is not implemented, the browser might even crash not being able to handle large data. All row models including ClientSide row model and Infinite Scroll row model supports virtual scroll .

Yes, here is a link with the answer

Turn on infinite scroll:

 // before grid initialised
 gridOptions.rowModelType = 'infinite';
 gridOptions.datasource = myDataSource;

 // after grid initialised, you can set or change the datasource
 gridOptions.api.setDatasource(myDataSource);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM