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!

How to Create and Use Tags in an Apex Form

SteveQuinlivanApr 21 2021 — edited Apr 21 2021

Morning,
I have a question regarding how to create and use tags in Apex.
I have a form for feedback, and would like to add the ability for people to add tags.
I would love this to look and work similar to how we ask a question on this forum
image.pngimage.pngCan anyone explain how this can be done? How do i store the data? (i have an sql table behind the form), how do i build it in the apex form? Is the list of tag pre determined or can users add to it?
Many thanks for you help
Regards

This post has been answered by Scott Wesley on Apr 21 2021
Jump to Answer

Comments

Scott Wesley
Answer

The native Popup Lov facilitates multi-value selection (from 19.x), or the Select2 plugin can do the same. This would be from a known set of values.
They will store the values in a delimited string for that field, which you than then use apex_string.split to break it up as necessary.
If you need to dynamically add tags, then you may consider the United Codes List Extension plugin

Marked as Answer by SteveQuinlivan · Apr 21 2021
SteveQuinlivan

Thanks @scott-wesley, the Popup Lov will give me what i need

Regards

1 - 2

Post Details

Added on Apr 21 2021
2 comments
1,680 views