Pegase745 / sqlalchemy-datatables

SQLAlchemy integration of jQuery DataTables >= 1.10.x (Pyramid and Flask examples)
MIT License
159 stars 67 forks source link

Optimized Datatable #88

Closed saifraider closed 7 years ago

saifraider commented 7 years ago

Hi,

Thank you so much. Everything is working fine.

I had one question. If I had 10000 rows. Is it fetching and loading all rows at one time or it is optimized?

Thank you.

Best Regards, Saif

Pegase745 commented 7 years ago

Server side pagination is there to help. The total row count is 10000 but you can show as much as you want per page.

saifraider commented 7 years ago

Thank you for the quick response.