2

I want to add some components to my navigation menu (user picture, name, search field), and navigation bar(dropdown menu with user informations), to get like this result. enter image description here

dpccrt87
  • 53
  • 1
  • 8

1 Answers1

1

The User Picture and menu here is the how-to (I'm not going to type it or copy/paste since this exact question has been answered somewhere else):

Apex Profile Menu

The search you did not specify exactly what you want to search on but to add an object to the menu panel here is the how-to (I'm not going to type it or copy/paste since this exact question has been answered somewhere else):

region-in-left-side-navbar-menu

Update 1: To add JS or CSS to a page you need to edit the Page Properties (Ensure the Show-all is selected) and you will see the fields for JS: File URLs, Function and Global Variable Declaration, Execute when Page Loads and CSS: File URLs, Inline.

Update 2: You'd need to search on appropriate APEX view and from there get the right value: I'd use this query to start what you need: select APPLICATION_NAME,LIST_NAME,PARENT_ENTRY_TEXT,ENTRY_TEXT,ENTRY_TARGET from APEX_APPLICATION_LIST_ENTRIES WHERE APPLICATION_NAME = 'Your-App-Name'

GasparYYC
  • 188
  • 7
  • Thank you for your reply GasparYYC, but where should i add the code wrote in the step 5,6 and 8 in my inline dialog, following the first link – dpccrt87 Sep 27 '17 at 08:14
  • Concerning my second demand (means custom left-side-navbar-menu), i when to use a search bar, to search items in the list of entry, for example: if i have 4 entries: Home, Employees, Departements and Locations, and i tape 'De' i get directly Departements entry. – dpccrt87 Sep 27 '17 at 08:24
  • See Update 1 for details – GasparYYC Sep 27 '17 at 16:07
  • See Update 2 for details on Q2. – GasparYYC Sep 27 '17 at 16:15