charlie tsai
charlie tsai

Reputation: 285

Creating secondary menu bar under the first one ORACLE APEX

Can anyone tell me if there is a way to create a secondary menu under the first one?

enter image description here

So another menu bar under 'Home, Team/People' and above 'Home' Title

Upvotes: 0

Views: 1126

Answers (2)

Higor Pereira
Higor Pereira

Reputation: 189

Yes, you can. So, you can have only one menu list, which is for the application in general, but what you could do is add a region on page 0 which represents a list.


I'm assuming you're familiar with APEX development, then you can follow these steps:

  1. Fist you need to have the page 0(a.k.a global page) in your application. So, create it if there's not.
  2. In page 0, create a new region.
  3. Set the following region's attributes:

    Type: List;

    Position: Page Navigation;

    Template: none (- Select -).

    In source tab, select which list do you want to display there.

Upvotes: 0

GasparYYC
GasparYYC

Reputation: 188

Yes, but you don't create them as a Menu. In APEX (At least with theme 42) you have to choose Side Navigation or Top Navigation (not both).

What I've done is define my side menu then I added items to the Navigation list (in my case I have no need for submenus on the Nav. Bar) and the end result is that I have items to click on on left and top.

Upvotes: 0

Related Questions