Mendix5-Rc1: Missing NavBar Usermenu

1
I just ran a testconversion for a Mendix 5 beta8 app to Mendix 5 rc1 I downloaded the new Mendix5 Layout v1.3. from the appstore and updated my App theme with the new Mendix5 Layout v1.3. All seems to work fine but I'm missing the UserMenu (logged in username and logout option) in the navigationbar. Is this a bug? a setting? or theming? and if not how can I restore this menu?
asked
1 answers
4

This is intentional. You now have the following options available:

  • A signout button which should suit most normal purposes.
  • The option to log out AND send client feedback by calling a Java action in a Microflow. We did not include this option as a Microflow activity because you would only use it once in every application, but you can create a simple Java action that logs out and sends logout feedback to the client so that the client knows it should reset itself. This means that you can put your logout button anywhere where you would normally be able to put a microflow, including in your navigation. It removes the need for a special case 'menu' widget that had this button and username information before.

    The java docs have not been updated yet or I would link you to them, but to send the logout feedback to the client, use the com.mendix.webui.FeedbackHelper.addLogoutFeedback() method. For actually logging out you can use Core.logout()

answered