Data Grid
Batch Edit
A grid with batch editing: numeric cells become fields at once, a log shows «before → after» with per-entry undo, and one save covers the whole draft.
What you can change
- the line under the toolbar through caption
- the mode toggle caption through editLabel
- the panel heading through heading and the counter through editsTemplate with {count}
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-021?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-021-*. A client component: the base rows live in one piece of state and the draft of the edits as a flat "row:field → value" map in another. That split gives three things for free: the highlighting of changed cells, a log with the original value and the undo of a single edit without losing the rest. A value that has returned to its original drops out of the draft by itself — otherwise the counter would lie. The rows are given a fixed height, so switching on edit mode does not move the table. The counter of unsaved changes is declared role=status. 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. The rows prop keeps acting after mounting: the saved edits are stored alongside it rather than instead of it.
Tags
- datagrid
- batch-edit
- undo
- table
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
Loading…