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!

Apex 18.2 text w/autocomplete - Multiple values

NeoveraDBAMar 19 2019

I am trying to use an autocomplete text field that can be used to populate other fields.

I have seen this demonstrated in version before 18.2 with the following approach:

SQL Query:

SELECT full_name||'<user_id>'||user_id||'</user_id>'

FROM app_user

Then in the page CSS inline:

user_id {

  display:none;

}

This hides the user_id in the text field search but then you can use code (DA) to get the value of the user_id.

However, since 18.2 (i guess something to do with JET implementation) I cannot figure out how to do the same thing.

Comments
Post Details
Added on Mar 19 2019
0 comments
323 views