multiple display select the elements of the

Hello

I have a multiple selection element where the user can select multiple items. I want to display selected items in the next page - one value at a time.

example:-If the user selects a, b, c of the multiselect post I want to show in the next page as
one
b
c

what I get is a, b, and c in the next page when I view the value of the item & < item_nam >.

How to display selected items multiselect one below the other?

Thank you

Hello

One way is
Create dynamic content of PL/SQL and enter the source of the region, something like

DECLARE
  l_arr APEX_APPLICATION_GLOBAL.VC_ARR2;
BEGIN
  htp.ulistOpen;
  l_arr := APEX_UTIL.STRING_TO_TABLE(:P51_EMP);
  FOR i IN 1 .. l_arr.count
  LOOP
    htp.listItem(l_arr(i));
  END LOOP;
  htp.ulistClose;
END;

Change P51_EMP to your name of the multiselect element

Sample here
http://Apex.Oracle.com/pls/OTN/f?p=40323:51

BR, Jari

Tags: Database

Similar Questions

  • Incidents multiple displays to the customer portal

    Hi all.

    Is it possible to have several incidents screens in the customer portal?

    that is, in the main tool of the service manager you can link types to the screens so that you can have different fields visible depending on the type of call that you connect.

    In our case, the ideal solution would be to link a model to appeal to a specific screen in the customer portal that this selection is made before the registration of incidents of Portal screen loading.

    It requires a html customization or is there some settings that we lost that allows for GUI configuraiton of this?

    Thank you

    concerning

    Mika

    It is always = a way of...)

    Believe me, if you dare (and have some knowledge) to do customizations, you can do almost everything you need in this system. However, please keep in mind that using features by default when it is possible is always the best option. Therefore, think twice if out of box (which is default) features really do not match your goals.

    G

  • Can someone tell me how to show/hide multiple layers at the same time?

    Hello

    Can someone show me how to make more than one layer visible or invisible, without having to click on each separate layer? -J' have more than 100 layers in a drawing, and it is very tedious to have to click on each individual layer to hide it or show it. I just started using Photoshop elements 13, on an iMac

    Thanks for any advice.

    You can Option , click on the eye next to the thumbnail icon of the layer to hide all selected layers, but.

    Option , click New to display all layers.

    Order click to change the visibility of the selected layer switch

    To hide multiple layers, select the layers, right-click on one of the eyes, and click hide this layer

    Repeat to repeat the visible layers.

    You can also click on one of the eyes and then drag down or to hide layers and invert to make the visible layers.

  • WLAN client multiple ssid display &amp; selection

    assuming that the two SSID on both radios, such as

    dot11 radio0

    Private SSID

    SSID Public

    dot11 radio1

    Private SSID

    SSID Public

    is a client given - that can automatically be capable - display/select the radio 5 GHz on the 2.4 Ghz?

    Specifically, when the 5 GHz capable client lists the available networks, I see only the SSID of the 5 Ghz radio, or is SSID for both radios generally displayed by such a client?

    Thank you.

    does a given client--which is capable--automatically display/select the 5Ghz radio over the 2.4Ghz?

    Depends on the settings of your wireless network card.  I've seen several wireless cards which allows you to specify which radio is preferred.  By default, the WNIC chooses the best available signal.

    Specifically, when the 5Ghz-capable-client lists available networks, does it only display the ssids from the 5Ghz radio, or are ssids from both radios typically displayed by such a client?

    N ° it displays the SSID that initially has the most powerful signals.  If an SSID is broadcast by the two 'a' and 'b' radio, the WNIC will only show a SSID.

  • Interactive report with display of the icon to set the page element

    Hi all

    I am currently using Apex 4.2.4, I have an interactive report using icons, each icon has a link to another page but a few I want to set a value in a page hidden in the same page element which is then used as a variable for a classic report.

    I have this work via link href in the icon as f? p ='|| FA.page |': 1 :'|| : app_session |': P10_ID_ITEM :'|| FA.link_name without error.

    My problem is that I wanted to put the value of the element without using a link href that I could handle the clicked icon to change the background color so that the user can have a Visual representation, where it was clicked, then using the value of the page item appears the classic report in another region with a partial refresh.

    Any help is appreciated, thanks.

    Can you provide a detailed explanation of the purpose of this report and the logic used in the report query? What are the rules to control which icons appear in the IR, what icons link to the second report on the page of IR, and icons to link to separate pages?

    For me, the report query seems too complicated and inefficient by returning the data it does, and if another level of data is added to the hierarchy or more data is added to the second level, it fails with:

    ORA-01427: einreihig subquery returns multiple rows

    I'm guessing that the intent is that the IR displays only the icons at the top level of the hierarchy and icons for posting a link to a different page when they have no descendants, or to display the related lines in the secondary report below the IR when they do. I created a new page with the report query modified to a route of tree and keep the upper level lines. It is much more effective than the original query and simplifies the logic necessary for the verification of end-nodes. Instead of generating a URL link (which violates the separation of concerns), the query returns of the discrete values that can be used to implement the HTML link in the Icon View link Custom property:

    with icon_tree as (
          select
              ic.id_icon
            , ic.icon_name
            , ic.link_name
            , nullif(connect_by_isleaf, 1) is_parent
            , level depth
          from
              icons ic
                connect by
                    prior ic.link_name = ic.id_parent
                start with
                    ic.id_parent is null)
    select
        id_icon
      , icon_name
      , link_name
      , apex_util.get_blob_file_src('P10_ICON_IMAGE', id_icon) img_src
      , nvl2(is_parent, '586', link_name) target
      , nvl2(is_parent, 'P586_ID_PARENT', null) parent_item
      , nvl2(is_parent, link_name, null) parent_id
      , :app_id app_id
      , :app_session app_session
      , :debug debug
    from
        icon_tree
    where
        depth = 1
    

    In the interactive report, Use Custom Icon Link is set to Yes, and the custom link is:

    
      
      
    #ICON_NAME#

    Public static ID icons and results are applied to the IR and the regions second report respectively for use as selectors in action dynamics and CSS. The protected value property for the page P586_ID_PARENT element must be set to No for the value can be defined by a dynamic action.

    Dynamic action with several real actions is needed to bind alternatives click behavior to the links on the icons that have descendants (i.e. where the data-parent-id attribute has a value):

    Event: Click

    Selection type: jQuery Selector

    jQuery Selector:.apexir_WORKSHEET_ICONS a:not([data-parent-id=""])

    Real Actions

    Seq: 10

    Action: Delete the class

    Class:selected

    Selection type: jQuery Selector

    jQuery Selector:.apexir_WORKSHEET_ICONS a

    Seq: 20

    Action: Add the class

    Class:selected

    Selection type: trigger element

    Seq: 30

    Action: Set value

    Wait for result: Yes

    Type of value: Expression of JavaScript

    JavaScript expression:$(this.triggeringElement).attr('data-parent-id')

    Selection type: Agenda

    Point: P586_ID_PARENT

    Seq: 40

    Action: Discount

    Selection type: Region

    Region: results

    Seq:50

    Action: Show

    Selection type: Region

    Region: results

    Seq: 60

    Action: Cancel event

    Finally, add a style sheet to the Inline CSS property page. Initially, this hides the secondary report and select the parent clicked icon:

    #results {
      display: none;
    }
    #icons .apexir_WORKSHEET_ICONS a {
      border: 1px solid transparent;
      border-radius: 3px;
      padding: 0.8em 0 0.5em;
    }
      #icons .apexir_WORKSHEET_ICONS a.selected {
        border-color: #6a9cda;
        background-color: #bbd1ec;
        transition: 0.6s;
      }
    

    However, after all it is the question of why you use an interactive report here if you turned off all the features of the IR? A dynamic list with a custom template box seems to be more applicable?

  • You will return the "Select an element in the page" button right in Inspector?

    The 'select an element on the page' is to the extreme left now. Since ver.32 FF. As seen in this image:
    https://MDN.mozillademos.org/files/8315/Inspector-select-element-fx32.PNG
    Change for the worse in my opinion. You will return it right into the next version? Thank you.

    N ° it is always on the far left in the current construction of 35.0a1 of Firefox.

    All Toolbox items are on the far right, including the gear button options to define what items to display.

  • Vista will not recognize the projector connected for multiple display

    I'm under a system dual boot with Windows XP and Vista.  When running under XP, I doesn't hurt to connect a projector to my laptop and extend the desktop on the projector for meetings and others.

    When I am running Vista, it does not even recognize that the projector is connected.  However, once I have connected the projector, if I reboot the system, it will then display on the projector.  If I disconnect the projector, the screen does not reappear on the screen of the laptop, I have to restart, with the projector removed for office reappear on the screen of the laptop.  I'm hoping to get multiple monitors to work with Vista, as it does in my XP boot.

    For the purpose of the next presentation running in XP is not an option.

    Hi cptrigeek

    Try these steps and check if that helps:

    Method 1: We can try to perform a power cycle of the projector.

    Remove the cable from the power of the projector and this continues for 5-10 minutes. Also do the same for the laptop, Dungeon, it off. Then put back in place and start the projector. Now, start the laptop as well. Connect now. Now, you will need to install the driver for it (if there is one). After which, you need to configure the settings of the laptop.

    Method 2: Check the following steps:

    1. connect the projector to your Windows PC. NOTE: the following steps apply if you use your PC in MIRROR mode only.

    2. on the screen of the computer, right CLICK on the desktop and select Properties.

    3. click on the SETTINGS tab. If you want that your displays in mirror (what you see on laptop, it's what the public sees) you must make sure that the box "extend my desktop to this monitor" is DISABLED. If you see a box of "mirroring", remember to check it out.

    4. drag the slider to 1024 x 768 screen. As a general rule, the external monitor may limit this parameter. If your screen is higher, it might not display on the projector, then you want to test this until you're ready to take the floor. Drag the color to highest (32 bit) if available or medium (16 bit) quality if the first is not available.

    5. now select FN and press the function key. This key is usually given by a small screen icon, the CRT/LCDtext and is usually found on F8 or F5 even. Press the appropriate operation button ONCE and wait. After a few seconds, the second screen should light up. Be patient, it may take up to 5 seconds. On the projector, it may take up to 10 seconds for the projector to detect your system and switch. Note: a second press of this function (in general) will switch to monitor EXTERNAL only. A third press stop INTERNAL onlyand the circle for each push after that. Also note that some laptops can do this sequence in a different order, so learn your system so that you can quickly to the desired mode.

    6. click on the ADVANCED button. If 'apply the new settings to display without restarting' is not selected, select it. Under screen refresh rate, select 60 Hz. click APPLY and CONFIRM the choice. Click OK to close the ADVANCED options dialog. Close the display properties dialog box. You should now see a mirroring of your monitor on the second monitor.

    7. test: A test, disconnect the second monitor. put your mobile PC to sleep. He wakes up and let it fully come (login if necessary), and then reconnect the external monitor. On some machines, he needs to quickly display the screen in the last known state (you may need to wait up to 10 seconds). If it is not correctly displayed, press the switch function, ONCE. Yet once, note that it can take up to 10 seconds to view, so be patient. If only the projector display now, some pressure on the function switch key should provide for both screens again. If you can't get the projector to display, check all your connections and settings above.

    8 Note that when you use the projector, after pressing the function for changing the monitor button, it may take up to 10 seconds for the monitor find and block on your machine. Just wait. Pressing on the keys new fkey can simply ruin your settings or turn off the projector.

    9. not all laptops work the same way. Please make sure you learn how your work before you get to your presentation.

    (Not mirrored)

    1. If you do NOT want mirrored poster (display of different internal and external), CHECK the box next to the line that reads "extend my Windows desktop to this monitor." This SHOULD result in the external monitor display an image which is an EXTENSION of the current desktop.

    2. in the settings dialog box, the internal monitor appears as a '1' and externally as a '2 '. Click ONCE on the '2 '.

    3. with '2' selected, drag the Screen Resolution slider to the left or to the right until the resolution reads "1024 x 768". Also affect the quality of the highest (32-bit color) if available or average (16 bit) if the first is not available.

    4. click on the ADVANCED button. If 'apply the new display settings without restarting' is not selected, select it.

    5. Select the MONITOR tab. Under screen refresh rate, select 60 Hz. click APPLY and CONFIRM the choice. Click OK to close the ADVANCED dialog box. Your system is now set for an extended desktop. When it is connected to the screen, you may need to use the function switch key to turn once more on this option, but on systems that I tested, the extended desktop comes just when the monitor is connected. Yet once, I suggested some tests with this mode of knowing how your laptop will perform when connected to an external monitor before coming to speak.

    6. notes that, in this mode, items moved to the extended desktop can be "lost" it if the external monitor is disconnected because they live on the extended desktop is no longer available. Also note that if the extended desktop is turned on, this part of funds 'second' can continue to live, which means that the cursor and the object can be moved off the screen in this sector and not be visible on a single internal monitor. To resolve this problem, do a right-click on the desktop, select Properties, select settings, click on the '2' box and UNCHECK the extend option. Items left on the extended desktop should now align the right edge of the internal display.

    See also: http://windowshelp.microsoft.com/Windows/en-US/Help/16152337-a45c-4a1a-b302-cfd95399ce071033.mspx#EQB

    Understand multiple monitors: http://windows.microsoft.com/en-US/windows-vista/Understanding-multiple-monitors

    Set up multiple monitors: http://Windows.Microsoft.com/en-us/Windows-Vista/set-up-multiple-monitors

    Multiple monitor issues: http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-multiple-monitor-problems

    After back and let us know if it helped to solve your problem.

    Thank you and best regards,

    R uma - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Problem with the extended help display option for multiple displays.

    I have a laptop with an internal (#1) designated as my screen main screen. At work, I like to use the 'extended display' option for several screens to use the external desktop as #2 display monitor. However, at home I have the screen internal one on my laptop. So when I open an application like Excel at home, the window does not appear, but the application is running, as I confirmed with the Task Manager. So far, the only way I know to solve this problem at home is to change my display settings for multiple views to show on display #1 only. Is there a practical way to deal with this issue in addition to change the display settings whenever I move from work to home and vice versa?

    Hello

    In Windows 7, you can simply press the Windows Logo + P key.

    In the menu, select the item from the computer only .

    Concerning

  • Check if the user has selected box element apex before the loading of the page

    4.2.1

    THM:2

    Hello world

    I have two classic reports with different conditions but even select the columns based on a sql that uses the apex_item.checkbox2 element that allows users to select the lines and run some process. I also have a radio unit that hides and shows these two reports. However, it is possible that the user select a few lines and without doing anything click on the radio button that will present the page and all the lines that earlier he had chosen will be lost. I want that we should be able to pop an alert if there are checkboxes checked and the user tried to hit the button of the radio looks like the APEX_APPLICATION. G_F01. Count is not available at the time the page is submitted. We thought to use a pl/sql to see if APEX_APPLICATION DA. G_F01. Count > 0 then trigger an alert to confirm.

    Any ideas on how to do this?

    Thank you

    ryansun wrote:

    Hi FAC586 - basically, there are two parts of the report, were grouped products consolidated (as master) and the other report has all the products of the child. So based on the option the user selects that he sees who discovers and processes information.

    I tried to create the DA, but he does not seem to fire and I'm sure it would be because I have something wrong.

    No, in this case, there was a typing error in my JS expression above (this is what happens when there is no example in the trial against...)

    Must be:$('td[headers="COL_ALIAS"] input:checked').length > 0

    I have page submit on the evolution of radio, given that other elements of the actual application, don't do with this feature which is filled on the loading of the page.

    It does not work. If the present radio on the presentation changes group cannot be controlled by the dynamic action to confirm that it has already been committed before the confirmation message is displayed. Presentation must be made by further action of real on the DA. By the way other values is possible by using dynamic actions or region to submit elements of Page properties.

    But here it is necessary, if the user has activated all the lines, then changes the selection of the radio, it should show an alert to confirm. In addition, what happens if we have a very select in the box by a header label already. Can I use the same label to identify the COL_ALIAS?

    Do not understand the question.

    Don't know what I'm doing wrong.

    As I noted above, an important part of your problem is that you asking what amounts to a series of questions XY rather than the big picture given by presenting the necessary resources. You have been really good on the creation of examples on apex.oracle.com, but they are all fragments of the righteous, which makes things difficult when you try their synthesis in something that works as a coherent whole. Various bits and pieces that have been revealed in recent weeks, it seems like this could be treated using dynamic measurements without having to send the page until the final choice has been made.

  • Adobe Photoshop Elements 12 for Mac does not in Applications. Tutorial for editing in iPhoto shows by selecting the Adobe software in Applications. Am I missing a step in product registration?

    Adobe Photoshop Elements 12 for Mac does not in Applications. Tutorial for editing in iPhoto shows by selecting the Adobe software in Applications. Am I missing a step in product registration?

    I answered my own question: there is a difference between "Download"and 'install'." Hunting the 'install' (1.5 hrs in my case) and align your passwords, Adobe ID, etc., then install. 15 min. The right choice appears in the Applications. However it is to understand why photo selected for editing in iPhoto does not display in the elements.

  • Select multiple items in the tree programmatically

    What is the approach recommended for selection by program several elements in a tree? There is an API on the model of selecting either TreeView.getSelectionModel () .select (t, object) to select a single item, but it is not an equivalent API to select multiple items, i.e. TreeView.getSelectionModel (.select(T...objects)).

    One approach is to expand the tree and iterate through all nodes and calculate the index of each item to be selected and then call the method TreeView.getSelectionModel ().selectIndices(int...indices).
    In my case, I want only the records that contain the selected items to be developed for an additional step is to browse all folders and the collapse of those that do not contain the selected items.

    Is there an easier approach?

    Thank you.
    Stefan

    Don't do what suggests Zonski! :-)
    These lists are read-only - you will quickly get a runtime exception.

    The best approach is to just a multiple selection to be on and then loop through the desired selection list, by selecting each element individually. Because multiple selection is enabled, select calling repeatedly will not erase the previous selection.

    -Jonathan

  • How to display multiple images at the same time in CS6?

    How to display multiple images at the same time in CS6?

    Hello

    If you go to window > reorganize you can choose from several display options. Below, I have chosen two horizontal spaces since I have two images, but you can select other options if you have more than one image.

  • How to select multiple cells at the same time?

    Hello

    How to select multiple cells at the same time? What is the keyboard shortcut?

    Thank you to.

    Flo, a french guy.

    Hold down the CMD key when you select the cells.

  • Select the image to display

    Hello

    I have a following problem. I have a VI that displays three images (all have the same size). I can view each image in the selected Image appears of range of Vision. As you can see in the picture below two views of the Image have the same size, and one is bigger.

    What I want to achieve is the ability to choose (using for example the buttons) image that should be displayed on screen. For example, when I press the button "Image1" and then the first image appears on the bigger screen (the other two images are displayed in small poster Image). When I press the button "Image2" then the second image is displayed in the largest screen of the Image and so on... Is it possible to do?


  • Use the listbox control to select several channels and display on the chart

    Hello everyone!

    I have a problem using the ListBox selection mode 1 or mode items. I have 6 channels of data, and I have a 2D chart. I am able to reterieve the signal names in the list box, but I want to be able to choose one or more signals to display on the chart. I used the table to index my 2D data are connected and then the output of the index table is connected to the graph. I had to use the listbox control as an index for the table to index and display the data in the index selected for display on the chart. I used lisbox as the value property nodes, the line active and all but not able to display signals on the graph. I have attached a code example to show you what exactly I'm looking.

    Any suggestions will help a lot.


Maybe you are looking for

  • Why is it not my music showing I did the update?

    I did something to update this morning and now my music is not appear ios 9.  When I click on music it just shows a young girl listening to the headphones.  Help.

  • C4780 printer: Pinter offline with new router

    I recently had to buy a new router... Linksys EA2750. Printer does not recognize the network. I would appreciate any help with this issue. TY

  • touch screen has two lines in the upper part

    I just bought a R5-571 of Best Buy. It's a two in one, but there's an ine doulbe which crosses the top of the screen. However, my initial was that it served a purpose and there was some setting that was originally there, but I couldn't find anything.

  • property issues intellectual property ea7500

    I bought a new ea7500 put in the bottom of the House. Auto set up and it works fine. However, the router is powered by a cat 5 to my modem Xfinity on the floor. When I plug the cable in the enternet on the ea7500 port, ports on my early modem 192.168

  • Compaq Mini CQ10: Reset Bios password

    Hello I have a cq10 compaq mini and I removed the cmos battery but it still asks a bios password at startup. s/n CNU0131ROY Best regards Erik