Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Page Item in Navigation Menu

falckbOct 17 2023 — edited Oct 18 2023

Hello,

I'm using APEX 23.1 and looking for a way to put a page item (radio group) in the Navigation Menu. Since this is likely not possible using standard methods, I've been trying to edit the Navigation Menu template to reflect the page item in HTML. I edited the After List Entry section from

</ul></div>

to

<div class="my-radio-group">
<input type="radio" id="option1" name="group1" value="Option 1">
<label for="option1">Option 1</label>

<input type="radio" id="option2" name="group1" value="Option 2">
<label for="option2">Option 2</label>

</div>
</ul></div>

This page item is appearing for about a quarter of a second when I reload a page, but then it immediately disappears. Any reason why that would be occurring? If there is a better way to accomplish what I'm looking for, I would love to hear alternative approaches.

This post has been answered by dbliss-Oracle on Oct 18 2023
Jump to Answer
Comments
Post Details
Added on Oct 17 2023
1 comment
335 views