You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When actions are defined in the list views, add them in a virtual column at the end of the row.
Distinction between actions at the view level (top right) and actions defined for objects:
This corresponds to header.selection.actions
=> Use header.selection.show_inline
show_inline is either a boolean (false by default; true means that all actions are included) or an array that specifies which actions (among header.selection.actions) should be visible.
If there are more than 2 actions, a "more" button appears to open a menu for each row.
These actions are displayed as a button.
Only the icon is displayed (the label is included in the 'title' attribute).
The structure is that of the actions.
Adapt
If header.selection.show_inline === true
Convert to array and inject the names of all the ids from header.selection.actions.
View Layout
If header.selection.show_inline is not empty
Add an action column (65 px).
View Feed
For each row
If header.selection.show_inline is not empty
For each `header.selection.show_inline`
Create a corresponding action button (grayed out if not visible).
When action is executed for a single item, the related id must be injected in the controller params
The text was updated successfully, but these errors were encountered:
Add Inline Buttons in List Views
Operation
When actions are defined in the list views, add them in a virtual column at the end of the row.
Distinction between actions at the view level (top right) and actions defined for objects:
This corresponds to
header.selection.actions
=> Use
header.selection.show_inline
show_inline
is either a boolean (false by default; true means that all actions are included) or an array that specifies which actions (amongheader.selection.actions
) should be visible.If there are more than 2 actions, a "more" button appears to open a menu for each row.
These actions are displayed as a button.
Only the icon is displayed (the label is included in the 'title' attribute).
The structure is that of the actions.
Adapt
If
header.selection.show_inline === true
Convert to array and inject the names of all the ids from
header.selection.actions
.View Layout
If
header.selection.show_inline
is not emptyAdd an action column (65 px).
View Feed
For each row
If
header.selection.show_inline
is not emptyWhen action is executed for a single item, the related id must be injected in the controller params
The text was updated successfully, but these errors were encountered: