Data Grid
Infinite Scroll
A long grid that loads on scroll: a counter and a bar show how many rows have arrived, and a «Load more» button repeats the auto-load for the keyboard.
What you can change
- the line under the toolbar through caption
- the batch size through batchSize
- the panel heading through heading and the loaded counter through countText with {shown} and {total}
A link for your AI agent: preview, code and instructions.
Preview
Use it with AI
- 1. Copy the link.
- 2. Write to your agent in your own words and drop the link into the sentence.
- 3. The agent opens the link and installs the component from the registry.
put this on the home page as the hero:
https://vibeui.ru/c/datagrid-025?lang=en&theme=dark
Not sure where to paste it? Step-by-step guide
Show the full instructions
What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.
Loading…
For developers
The install command lives in the “Component source” block below — a signed link that stays valid for 24 hours.
Technical notes
The component is self-contained: one file, no dependencies, the palette in --vibeui-datagrid-025-*. A client component: useState holds the number of shown rows, and a slice of the array gives the visible ones. The auto-load hangs on the container's onScroll and fires 24 px before the bottom — without that margin the threshold is missed on a fast scroll. The "Load more" button is kept deliberately: it duplicates the auto-load for the keyboard and for anyone who jumped to the end of the list. The share loaded is shown both as a number and as a bar with role=progressbar and aria-valuenow: an endless list with no bottom is disorienting. The header sticks to the top, so the columns are visible at any depth. The theme comes from the surrounding color-scheme through light-dark(): by default the feed lays no panel under itself, it sits directly on the page background and darkens along with it.
Tags
- datagrid
- infinite-scroll
- progress
- table
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
Loading…