Number of displayed Records of Oracle APEX Popup LOV

Number of displayed Records of Oracle APEX Popup LOV

7. September 2008

Oracle APEX, Tips & Tricks

Recently I answered a question about where to change the number of displayed records of a Popup LOV in Oracle APEX and I thought it could be of general interest.

The behavior of Popup LOVs can be changed through the Popup Lov template. You can find it at
Shared Components\Templates\Popup LOV.

In the Pagination section you will find the property Display which defines how many records are displayed at once.

The Popup LOV template also contains other interesting settings like the icon which is used for the popup lov field or the text for the search button, the width and height which is used to display the popup lov window and much more. Just have a look!

3 Responses to “Number of displayed Records of Oracle APEX Popup LOV”

  1. niels Says:

    Hi Patrick,
    I want to display more than only 1 column in my LOV. Is that possible?
    Ciao1
    Niels

  2. Patrick Wolf Says:

    Hi Niels,

    the only possibility is to concatenate the columns. eg.

    SELECT LAST_NAME||’ ‘||FIRST_NAME AS NAME
    , USER_ID
    FROM MY_USERS
    ORDER BY 1

    Regards
    Patrick

  3. niels Says:

    Nice! I thought so..
    Ciao
    Niels

Leave a Reply