You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to invesdwin-platform
Hello, In my application there is in the menu space the title "invesdwin-nowicket". I have read documentation, set "title()" method, nothing changed. I have looked at bsgcoach example and tried to do the same thing but without luck. BTW I do not see documentation for how to create top menu. Thanks as usual for any help. Mario
Edwin Stang
unread,
Mar 29, 2018, 5:21:04 AM3/29/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to invesdwin-platform
In the bsg-coach example you can see in ABsgCoachWebPage:
final Navbar navbar = super.newNavbar(id); navbar.setBrandName(null); navbar.setBrandImage(LOGO, Model.of("bsg-coach"));
setBrandName is what you are looking for. The title() method is only relevant for the tab title of the tab in the browser. And other titles like modal dialogs. The nav is only customizable in the newNavbar() method override. The title also should change between pages while the brand name should stay the same on each of your pages. This is why it is separate.