V4 Questions (Nested Ressources, ModalTableSelect)
Let’s assume there is a model Project.
A Project has many Campaigns.
A Campaign has many Variants.
The Project (and all related data through it) is in the scope of a multi-tenancy Team.
So the nesting is: Team → Project → Campaign → Variants.
Any help on these points would be greatly appreciated!
Is it possible to show Campaigns in the main navigation within the scope of the current Project?
(For example, when
Setting
Manually adding this to the
Is it possible to trigger a modal showing all the Projects of the current Team in a table?
Is it possible to add
For example, a
A Project has many Campaigns.
A Campaign has many Variants.
The Project (and all related data through it) is in the scope of a multi-tenancy Team.
So the nesting is: Team → Project → Campaign → Variants.
Any help on these points would be greatly appreciated!
- Nested Resources
Is it possible to show Campaigns in the main navigation within the scope of the current Project?
(For example, when
/project/1 is in the URL path.)Setting
$shouldRegisterNavigation = true has no effect.Manually adding this to the
navigationItems in the AppPanelProvider works, but there are multiple models like this, so it is not a desirable solution.- Action with RenderHook
Is it possible to trigger a modal showing all the Projects of the current Team in a table?
- ModalTableSelect
Is it possible to add
recordActions here?For example, a
ViewAction?