PopUp LOV with Multi-Select - oracle-apex

Oracle APEX gives us the option of creating a POP-UP LOV, but I couldn't find any way to have multiple select in this item.
Is there any way to have multiple select in POP-UP LOVs?

Go to Item
Type : Popup LOV
Multiple values : Yes
List of value: SQL query
select ename, empno from emp

Apex doesn't offer it, so I'd say not. Maybe with some help of e.g. JavaScript or something else, I can't tell.
Select list items or shuttles let you select more values, if you want to use them instead.

Related

Oracle APEX - Find all pages utilizing specific LOV

I want to find out if a specific LOV has been used by any pages in my application. I assume this can be done by querying APEX express views. I found a view containing LOV data - APEX_APPLICATION_LOVS but that does not help me get the list of pages utilizing the LOV. Can anyone point me in the right direction?
The easiest way is via the APEX Builder tool:
As that shows, there are 3 places they can be used:
page items
report columns
interactive reports
(though I would expect interactive grids to be there too, and perhaps facets too).
Another way to to search APEX_DICTIONARY for likely columns e.g.
select * from apex_dictionary
where column_name like '%NAMED_LOV%';
That returns:
APEX_APPLICATION_PAGE_IR_COL
APEX_APPLICATION_PAGE_ITEMS
APEX_APPL_PAGE_FACETS
I don't have the definitive list, but I hope that helps.

Oracle APEX 18.2, column filter for Popup LOV columns in Interactive Grid

I'm on Oracle APEX18.2
I have an Interactive Grid where two columns are Popup LOV based. The return value of these is text.
However I'm not able to have the column filtering feature work for these columns in the interactive grid.
When I click on the column header of these columns the filter drop down comes up empty. Even the Inetractive grid search-box doesn't search these columns. I cannot see the filter options in the attributes of these columns in the developer. I can see it for the other columns in the grid.
Is this a bug? Is there a way to have the search work for these columns?
As not much details listed here, I can see below possibilities :
return_value and display_value are not marked correctly in your LOVs causing empty list
You will also need to have default value in case you want preloaded data
Ensure you have cascading LOV parent item for 2nd LOV popup to populate data dynamically. ->
Do the following steps in your Apex Page Designer
Click on the Modal LOV column in the IG.
In the Attributes of the column search for Column Filter
Column Filter -> LOV Type => Use List of Values.
Image showing where to enable column filter
Note: If you have filled the Cascading LOV Parent Column(s) property in List of Values Section then the Column filter will be hidden because the LOV has a parent column and so apex will not be able to filter the column (Oracle Support Ticket Link)

Multi Filter ORACLE Apex Popup LOV

How can I can create Popup Lov item with multi filter ?
I want to create multi filter in popup Lov item , I need:
three search filter appear;
one free text search;
two selected list.
The way you described it, solution is in 3 separate Select List items which are in parent-child relationship. Something like this:
Continents
States - whose LoV query should reference continents
Cities - whose Lov query should reference states
Never mind whether they are Pop-ups or simple select lists; they'll work just the same.

LOV working as expected in Select List, not in Display as text(LOV)

Working on an app in Oracle APEX, time entries are represented as floats in the DB, but I want to display them properly in the app iteself, so 15.5 displays as 15:30. For that, I created a Static LOV in Shared Components.
It works perfectly in Select List, but when I try to use the same LOV on the same entries in a report, istead of 15:30 it shows 1530.
Any idea what might be causing this?
There are several places where you can enter date formats, but I think it would be most practical to make sure that you define your LOV is such a way that its display value is of type VARCHAR2. In that case, it will be displayed the same where ever you use it. For the return value you simply retain the DATE type.
For example:
SELECT TO_CHAR(SYSDATE, 'HH24:MI') display_value
, SYSDATE return_value
FROM DUAL

In Sitecores Advanced System Reporter is there a way to select all items in the report?

In the Sitecore Advanced System Reporter module is there some way to select all items in the report? I can only figure out how to select one item at a time.
You can hold down the control (add individual)and shift (select everything between) button to select items the same as you would in windows explorer. I think there's a setting that says how many items to display per page (app_config/include/asr.config, i think) too to add more items to show per page.