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
@@ -325,7 +410,7 @@ export default class AdminForthBaseConnector implements IAdminForthDataSourceCon
325
410
Update record received field '${field}' (with value ${newValues[field]}), but such column not found in resource '${resource.resourceId}'. ${similar ? `Did you mean '${similar}'?` : ''}
Copy file name to clipboardExpand all lines: adminforth/documentation/docs/tutorial/03-Customization/08-pageInjections.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -469,6 +469,26 @@ Notes and tips:
469
469
- Requirements:
470
470
- Required `<tr></tr>` structure around `<slot />`
471
471
472
+
## List table three dots menu injection
473
+
474
+
`customActionIconsThreeDotsMenuItems` allows to inject component inside three dots menu for each recod in list table.
475
+
476
+
```ts
477
+
options: {
478
+
pageInjections: {
479
+
list: {
480
+
customActionIconsThreeDotsMenuItems: {
481
+
file:'@@/ApartRowRenderer.vue',
482
+
meta: {
483
+
// You can pass any meta your component may read
484
+
}
485
+
}
486
+
}
487
+
}
488
+
}
489
+
```
490
+
491
+
472
492
## List table beforeActionButtons
473
493
474
494
`beforeActionButtons` allows injecting one or more compact components into the header bar of the list page, directly to the left of the default action buttons (`Create`, `Filter`, bulk actions, three‑dots menu). Use it for small inputs (quick search, toggle, status chip) rather than large panels.
0 commit comments