Data Grid
Tree Grid
A tree grid with expandable child rows: the level is declared through aria-level, the indent is derived from it, and a parent's total is recomputed from its branch.
What you can change
- the line under the toolbar through caption
- the per-level indent through depthStep, in pixels
- the panel heading through heading and the collapseAllText and expandAllText captions
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-024?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-024-*. A client component: useState holds the list of expanded branches, and a walk of the tree flattens it into a plain list of rows. The level is declared by the markup: the row carries aria-level and the parent aria-expanded, and the indent arrives through the --vibeui-datagrid-024-depth variable and is multiplied by the step. A parent's total is always computed from its descendants recursively: a collapsed branch without a sum of its own hides the data rather than folding it. The disclosure button carries its own aria-label with the name of the branch, and the arrow is turned with transform. The scrolling is moved into a container with role=region 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.
Tags
- datagrid
- tree
- hierarchy
- table
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
Loading…