*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.
*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 ifallowList: [ 10, 50 ]
is configured, then display first 10 rows, when user scrolls, then load the next 50, then the next 50 etc.