apex_add_breadcrumb
Add breadcrumb navigation to Oracle APEX pages with ordered entries of labels and target page IDs, showing users their location and enabling quick navigation.
Instructions
Add breadcrumb navigation with ordered entries [{label, page_id}].
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entries | Yes | Ordered list of breadcrumb items. Each dict must have: - ``"label"`` (str): The text shown for this breadcrumb step. - ``"page_id"`` (int | None): Target APEX page ID. Pass ``None`` (or omit) to mark this entry as the active/current page (no link). Example:: [ {"label": "Home", "page_id": 1}, {"label": "Beneficiarios","page_id": 10}, {"label": "Detalhe", "page_id": None}, ] | |
| page_id | Yes | Page where the breadcrumb will appear. | |
| sequence | No | Display order of the breadcrumb region on the page (default 1 — renders above other content). | |
| region_name | Yes | Internal name for the breadcrumb region. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |