e8-grid-row-command-bar
Updated on Jan 22, 2026 3 minutes to readA command bar used inside a grid row to display row-level actions.
Overview
e8-grid-row-command-bar is a container component for row-level actions within a grid row.
It defines the layout and alignment of actions related to a single row. Used together with e8-grid-row-action.
<e8-grid-row-command-bar>
<e8-grid-row-action label="Edit" icon="edit"/>
<e8-grid-row-action label="Delete" icon="trash"/>
</e8-grid-row-command-bar>
🔽 Show more
Properties
| Property | Description | Type | Default |
|---|---|---|---|
| deletion-visible | Controls visibility of delete-related actions for the row. | boolean | (row) => boolean | true |
| copying-visible | Controls visibility of copy-related actions for the row. | boolean | (row) => boolean | true |
| viewing-visible | Controls visibility of view-related actions for the row. | boolean | (row) => boolean | true |
| visible | Controls overall visibility of the command bar for the row. | boolean | (row) => boolean | true |
Slots
| Slot | Description |
|---|---|
| default | Slot for e8-grid-row-action components. |