e8-grid-row-action
Updated on Jan 22, 2026 6 minutes to readAn action component used inside a grid row command bar.
Overview
e8-grid-row-action represents a single action associated with a grid row.
The action displays an icon and abel and can be marked as the default row action.
<e8-grid-row-action
icon="edit"
label="Edit"
:default="true"
></e8-grid-row-action>
🔽 Show more
Properties
| Property | Description | Type | Default |
|---|---|---|---|
| default | Marks the action as the default row action. | boolean | (row) => boolean | false |
| icon | Name of the icon displayed in the action. | E8IconName | — |
| label | Text label displayed in the action. | string | — |
| variant | Text color variant applied when button is not active. | E8TextColorVariants | — |
| visible | Controls overall visibility of the action. | boolean | (row) => boolean | true |
Events
| Event | Description |
|---|---|
| on-click | Emitted when the action is clicked. |