Data Grid
Pin On Demand
A wide grid where pinning is the reader's call: a pin in the header makes the column sticky, and its offset is derived from the columns already pinned.
What you can change
- the line under the toolbar through caption
- the cap on pinned columns through maxPinned
- the panel heading through heading and the pin counter through pinnedTemplate with {count} and {max}
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-014?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-014-*. A client component: useState holds the list of pinned keys, but the order is taken from the order of the columns rather than of the clicks — otherwise the columns would swap places under the cursor. The column width is fixed by the --vibeui-datagrid-014-col variable together with table-layout:fixed: only that way is left computed by a calc formula, with no measuring in the browser. A sticky cell carries a background of its own, and the table is built with border-collapse:separate. The pin is a button with aria-pressed and an aria-label of its own, and the number of pinned columns is capped by a prop. The scrolling lives in a container with role=region, aria-label and tabindex=0. The theme comes from the surrounding color-scheme through light-dark(): by default the grid lays no panel under itself, it sits directly on the page background and darkens along with it, and an opaque background of its own is left only on the sticky cells.
Tags
- datagrid
- sticky-column
- pinning
- table
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
Loading…