virtualStickyFooter()
function virtualStickyFooter(model): Attachment<HTMLElement>;Create an attachment for the model’s sticky footer.
Parameters
model
Returns
Attachment<HTMLElement>
Related examples
- Sticky Header And FootersvelteThis example keeps a header and footer inside the scrolling viewport while the virtual item range remains measured and independently positioned.
- TablesvelteThis example virtualizes dynamic rows without breaking native table semantics. Spacer rows represent content above and below the rendered range because a positioning wrapper cannot sit between tbody and tr.
- Event SubscriptionssvelteThis example subscribes separate, small consumers to range and size events. Unrelated model changes stay out of each framework's broader render or reactive update path.
- Scroll To ItemsvelteThis example scrolls to an item by index while row sizes and the collection length change. It covers alignment, smooth scrolling, sticky controls, and measurement correction through the public scrolling API.