Virtual scrolling inside list. See the list options for grow (you'll have to scroll down to it) or this image.
Proposed Solution
What all solutions will need:
All solutions will need an item-height property.
Solution 1: Simplest to implement
Add another ListGrowingMode: VirtualScroll, which causes the scrollbar to be reflective of the whole loadable content, and fires the load-more event with parameters startIndex: number and endIndex: number. This requires the user to handle inserting the items at the right place.
Code Example:
``` svelte
busy
>
```
Solution 2: A better solution, requiring more work
Provide a property, which is a function, that requests the right items.
Feature Request Description
Virtual scrolling inside list. See the list options for
grow
(you'll have to scroll down to it) orthis image.
Proposed Solution
What all solutions will need:
All solutions will need an
item-height
property.Solution 1: Simplest to implement
Add another
ListGrowingMode
:VirtualScroll
, which causes the scrollbar to be reflective of the whole loadable content, and fires theload-more
event with parametersstartIndex: number
andendIndex: number
. This requires the user to handle inserting the items at the right place.Code Example:
``` svelteSolution 2: A better solution, requiring more work
Provide a property, which is a function, that requests the right items.
Code Example:
```sveltePriority
Medium