olifolkerd / tabulator

Interactive Tables and Data Grids for JavaScript
http://tabulator.info
MIT License
6.76k stars 821 forks source link

Improve allowEmpty: allow to set the number of rows to display #4629

Open KES777 opened 1 week ago

KES777 commented 1 week ago

*Is your feature request related to a problem? Please describe.** If autocomplete list is a bit enough it is CPU power wasting to display whole list.

Describe the solution you'd like Usually users click and want to see some examples of data before starting to filtering out items. We can achieve this by configuring allowList: 10. If users want to scroll more, then Tabulator can display the whole list or if allowList: [ 10, 50 ] is configured, then display first 10 rows, when user scrolls, then load the next 50, then the next 50 etc.