Hi,
We would like to link some native and fixed sub-pages directly in the panel menu because they need to be called frequently.
For this I created a simple area plugin without a vue component, which only contains the static link. The forwarding and the link in the menu also work without any problems - unfortunately it does not get an optical “active” state when I am on the corresponding page.
That the configuration right now:
'areas' => [
[…],
'ensemble' => [
'label' => 'Ensemble',
'icon' => 'star',
'menu' => true,
'link' => 'pages/ensemble-data',
],
[…],
]
On custom panel views, on the other hand, this works perfectly without any further configuration.
Can I somehow tell the panel that this menu item should be highlighted when the user is on a specific subpage? I couldn’t find anything about this in the docs? Maybe there is a private undocumented function for that?