SideMenu <separator> tag in menu doesn't apply

Hi all, I’m not able to insert separator lines between options in the menu.
After I insert the tag as below:

immagine

the menu doesn’t change, as below:

immagine

I’m using CUBA Studio SE v.6.10.3 and the Platform version is 6.10.9.

Any help ?

Hi,

SideMenu does not support separators by design.

Hi Yuriy, thank you for your reply.

Please could you address me on wich menu configuration I have to go to obtain a menu with separators and icons ?
I’m trying to obtain a menu like this: https://demo.cuba-platform.com/dashboard

There is a tutorial or other guide to get a more configurable menu ?

Thank you in advance !
Ivano C.

There are no separators in menu of Dashboard Demo. Where do you see them?

As for icons you can easily define them in web-menu.xml as follows:

<menu id="application">
    <item id="ref_Car.browse" shortcut="ALT-C" icon="font-icon:CAR"/>
    <item id="ref_AllocatedCar.browse" icon="icons/ok.png"/>
</menu>

Find IDs of all available font icons in com.vaadin.server.FontAwesome class.

1 Like

Thank you very much !
Ivano C.