Open detail view from menu

Hi there,

I am looking to use my hamburger menu as a way to open the detail view of a LFD.

When I click on an item in the detail view, I want it to do two things:

  1. Open my “Directory” screen

  2. Open my profile in the detail view of directory screen

I imagine I would need logic to:

  • Open my directory card in detail view
  • Query parameter this to my login details - could we use the email user profile to link the my login with the directory?

Any help would be much appreciated - thank you!

That’s right, David!
In order to open specific user’s details on “Directory” screen you need to use query parameters.
You need to use dynamicListOpenColumn and dynamicListOpenValue to specify the user by the email address.
Any special symbol including space, should be encoded. You can use any online encoder, for example this one

For example, if column name with user’s email has ‘Email’ name and user’s email is ‘admin@email.com’, this is how your query parameters string will look like after encoding ‘admin@email.com’:

?dynamicListOpenColumn=Email&dynamicListOpenValue=admin%40email.com

This is how your menu item should look like (menu item name is totally up to you):

1 Like

Super - thank you so much!