Discussions
Categories
- 197K All Categories
- 2.5K Data
- 546 Big Data Appliance
- 1.9K Data Science
- 450.8K Databases
- 221.9K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 552 MySQL Community Space
- 479 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.1K ORDS, SODA & JSON in the Database
- 556 SQLcl
- 4K SQL Developer Data Modeler
- 187.2K SQL & PL/SQL
- 21.4K SQL Developer
- 296.4K Development
- 17 Developer Projects
- 139 Programming Languages
- 293.1K Development Tools
- 110 DevOps
- 3.1K QA/Testing
- 646.1K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 161 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.2K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 19 Java Essentials
- 162 Java 8 Questions
- 86K Java Programming
- 81 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 205 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 475 LiveLabs
- 39 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 175 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 233 Portuguese
Custom apex_item popup_from_lov options question

Hello!
I'm currently working on a page function that creates several separate little boxes, each of them being empty at first, and then requiring a selection of data in an popup_from_lov item that will then fill the box with data derived from the picked info. Here's how it looks:
The item in this case opens up a small modal page that has the data to be selected. The question now is, the same item and function exists in Oracle APEX, and it has an option to choose between "modal dialog" and "inline". Is there a way to set this in the parameters given to the item? I've tried something like this to no success so far, and sadly, the Oracle documentation doesn't state whether this is possible or not.
I've tried adding several manners of "inline" option in the "p_attributes" parameters, and a few others, but they've either done nothing or returned an error, because they're not supposed to receive this kind of input.
Also, currently my list of values being selected by this popup_from_lov has the settings that it should be showing several options for search, via the "Additional Columns" settings inside the List of Values page, however, only one value is being shown as searcheable.
Is there a way to achieve this multiple search in this custom apex_item.popup_from_lov?
Answers
-
The item in this case opens up a small modal page that has the data to be selected. The question now is, the same item and function exists in Oracle APEX, and it has an option to choose between "modal dialog" and "inline". Is there a way to set this in the parameters given to the item?
Is there a way to achieve this multiple search in this custom apex_item.popup_from_lov?
In both cases, the answer is "no". The terms "popup" and "LOV" are all these things share. They are completely different components with totally separate implementations.
Here's how it looks
It looks a bit odd. What APEX version and theme are you using?
Please don't crop screenshots. Show the entire browser window to provide some background context.
Basically this doesn't look like a viable long-term solution. The
apex_item
API is considered a legacy feature and is not recommended for use in new applications, and the Popup LOV template has just been desupported in APEX 22.1.I would suggest that you provide an expanded description of your requirements to enable us to suggest a better approach.
-
Sorry, I was worried about not showing anything data related.
Here is a full screen of the page. My Apex version is 21.2, and the theme is just a css color choice.
The reason for implementing this html generated through the PLSQL procedure is because the idea is to have a report with these "cards" to show, and we want to be able to set what the amount of lines and columns we can have. I've attempted the same with the classic report cards, but the settings to select the amount of columns is limited to what we would like. Only having the options to have a 1, 2, or 5 columns doesn't quite work.
Another issue with using the classic report cards is that, the apex_item generated inside it, even though able to be selected as if to type something in it, acted as a read-only, and there wasn't any way to enable writing in the item.
-
What problem are you actually trying to solve here?
That's not a UI that I would ever consider creating, which leads me to suspect that everything else about this would be equally alien to me.
-
Sorry I haven't been presenting the problem properly.
I would like to, if the component is capable of doing so, to have each of these little boxes to have a apex_item.popup_from_lov item (generated through the PLSQL procedure) that opens a window like this, where you can type some information related to what you might be looking for, and the results adjust themselves, rather than having a single column to search.
-
I would like to, if the component is capable of doing so, to have each of these little boxes to have a apex_item.popup_from_lov item (generated through the PLSQL procedure) that opens a window like this, where you can type some information related to what you might be looking for, and the results adjust themselves, rather than having a single column to search.
No, that's not possible using
apex_item.popup_from_lov
. It is based on legacy LOVs with 2 display/value columns.I don't understand what you mean by "the results adjust themselves"?
Why have 50 of them?
What source(s) of data are being queried? Is it the same for all of the items?
What happens next?
-
The reason for wanting the several columns popup_from_lov is mostly to do giving our users the most options when performing a search. They might remember the description of the entries they are looking for, but sometimes they may want to search for the phone number linked to that description, for example.
The data sets are separate into, mostly, a description, 2 other columns of information, and a phone number. When they typed data matching any of these, they could then select the one they wanted, which then would fill up the boxes shown above.
Using the example I from this "Employee" from the proper apex component popup_from_lov, I would search for Allen and a choice of data would be displayed in the "card".
The idea would be to replicate the display in the popup_from_lov, but in the apex_item variant. It's a shame it's not possible then, I might have to look into other options. Thanks for the clarification, fac586!