Search code examples
menuoracle-apexoracle-apex-5

APEX - How to get line Seperator in Menu


I have a Navigation Bar menu in an Apex 5 app. Something like 'Info A', 'Info B', 'Logout'. For 'Info B', it is a drop down menu, which is in 2 categories. So for example,

Set 1
-----------------
Set 2A
Set 2B
Set 2C
Set 2D

How do I draw a horizontal line between the 2 sets, that is (ideally) non-selectable? These are static menu entries, they will not change.


Solution

  • If anyone still interested in this, this is how you do it: Create a new List-Entry with List Entry Label = '---' (3 dashes), Target Type = URL and URL Target = 'separator'

    Happy apexing