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.