Is it possible to edit the Popup-LOV window?

Hi,
I changed my Selection-List into a Popup-LOV.
1.
Now I want to edit this Popup-Window, that it shows more than 10 rows. Is it possible to edit this window?
2.
My return-value is the Primary Key of the chosen dataset. This is not very user friendly. :-S ... is it possible to "display the display value" in the textbox from the popup-LOV - and when I want to save the whole form-dataset it takes the primay-key-return-value?
I hope, somebody understand my problem.
Thanks so much,
Elisabeth
Message was edited by:
user614754

In APEX 2.0 this does not work for the actual code of the POPUP. I want to change the code in the POPUP window that appears so it resubmits the parent page when the item is selected after the passback but had to create a custom POPUP page as I could not edit the popup code with the passback code.
If there is a way of editting the POPUP page template (not the link from the POPUP LOV Item) then please can someone let us know?
Thanks
Phil
I've started a new thread on this as it is different and there does not seem to be a solution discussed so far
POPUP LOV template modification
Message was edited by:
Phil UK

Similar Messages

  • The popup LOV is very slow in APEX 4.0, did anyone can help on this?

    The popup LOV is very slow in APEX 4.0, did anyone can help on this?
    Wherever I try to open a popup LOV windows , I am always be very patient to wait the window show . Even if only a very few record to show.
    Edited by: daniel.luo on 2010/7/28 上午 7:52

    Hi Daniel,
    it probably doesn't matter how many records you show if you have an ORDER BY clause in your SQL statement. Because the database still has to do all the work to return you the first result set.
    Is the query itself fast if you execute it in "SQL Workshop"?
    Have you already tried the setting "Fetch" = "No Fetch"? Is the window now opening faster? I just want to rule out that it's a generic problem, but I think it has to do with your SQL statement.
    Was the popup LOV for this SQL statement faster in 3.2?
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins

  • Is it possible to 'edit' the Lift Adjustment

    Is it possible to 'edit' the Lift & Stamp Adjustment.  I want to change the crop information without losing other information.  Obviously my workflow has to be changed.  I find that when I crop to 11" x 14" and then send out to be printed @ Costco, they advise that the crop is wrong & I will lose some of the image.  My thought is to recrop in PhotoShop and then bring it back into Aperture for re-processing.
    Any ideas?

    No it's not possible to change the values in the lift and stamp tool.
    However I don;t think you have to. Are you sure when you export thr image for sending to Costco you are exporting with the correct size? Remember the crop tool only gives you the aspect ratio of the image. The size is set when you export it.

  • Is it possible to edit the QaaWS SQL?

    We are trying to sort the results returned from QaaWS. Is it possible to edit the SQL query and add an "order by"?

    No it's not possible to change the values in the lift and stamp tool.
    However I don;t think you have to. Are you sure when you export thr image for sending to Costco you are exporting with the correct size? Remember the crop tool only gives you the aspect ratio of the image. The size is set when you export it.

  • Is it possible to edit the MS-Word "Print It!" on a standalone topic?

    Is it possible to edit the MS-Word "Print It!" on a standalone topic?
    The topic would need to be edited in the Topic Editor and republished for the edits to be included in the standalone topic.
    Best regards,
    Marc

    This has been posted to the UPK forum:
    Is it possible to edit the MS-Word "Print It!" on a standalone topic?
    Best regards,
    Marc

  • Is it possible to edit the alarm popup menu?

    I notice that, when I set a new event or to-do, the alarm popup menu has two sections: the top one describes "methods" (Message, Message with Sound, etc.); the bottom one lists a few odd combinations (for example, "Message with sound (Frog) 15 days before").
    The items on this second list seem to have been "saved" from earlier choices I made when I set alarms for particular events. But I'd like to edit this list: add certain combinations I like and remove ones I don't use.
    Is it possible to do this?
    And by the same token, is it possible to edit (add,etc.) options in the popup menus for those little screens that actually "perform" the alarm (stating the message)?
    Thanks,
    Stuart Sherman

    The 1st question might be able to be partially addressed by deleting the preferences files (resetting the defaults)? I'm assuming Apple set some defaults. Alternatively (or additionally) a call to 800-apl-care might get you more info.
    The 2nd question: No way known to me.

  • Return multiple values for the popup LOV

    Hi folks,
    I have one challange. I have a search engine and there is an popup lov and its having three Display and 3 Retun value such as
    select
    p.A || ', ' || pi.B|| ', ' || km.C|| ' ' d, p.A || ', ' || pi.B|| ', ' || km.C|| ' ' r
    from tableA km,tableB p,tableC pi
    where km.col1=p.id and km.col1=pi.id and km.C is not null
    when i click on the pop lov it will display 3 values shuch as SAP+DBA+HR and in popup lov iteam its will return 3 values
    such as SAP+DBA+HR this return values are from 3 cloumn names from same table ie. A column, B column, C column
    and when i click on submit button this return values from 3 columns values should assign to the 3 column such as
    A=SAP, B=DBA and C=HR and search fetchs the result in a Report.
    Its some thing new, is it possible..:)
    ok will be waiting for your reply..:D
    Regards,
    Suri
    Edited by: user634694 on Feb 25, 2009 3:14 AM

    Hi Varad,
    am facing problems i wrote dynamic sql its working fine for 2 and 3 fields like (SAP+ORCL) and (SAP+ORCL+HRA) but for the single value like SAP the results are not comming properly. my code is
    If (:P25_TEST Is not Null ) THEN
    V_Sql := V_Sql||q'!
    And
    (multipleInstr1(R.Pillar,:P25_TEST)>0 )
    or INSTR ( '+' || Upper(:P25_TEST) || '+', Upper(R.Pillar))>0 ) and
    ((multipleInstr1(R.Product_Line,:P25_TEST)>0 )
    or INSTR ( '+' || Upper(:P25_TEST) || '+', Upper(R.Product_Line))>0) and
    ((multipleInstr1(R.Category,:P25_TEST)>0 ) or (R.Category is null)
    or INSTR ( '+' || Upper(:P25_TEST) || '+', Upper(R.Category))>0 )
    End If;
    where multipleInstr1 is a function created to search results even its delimited by '+' it ignors '+' delimiter and
    :p25_test is the popup iteam which takes values like SAP+ORCL+HRA or SAP+ORCL or SAP how its possible to get this results.
    Its turning too complicated for cheking condetion for a single popup iteam, can we get any solution for this or not..
    Hope will do respond
    Thanks and Regards,
    Suri

  • Is it possible to edit the calendar that an event is on from the phone?

    iPhone 2.0: I hope I'm not missing something here (though, I guess I hope I am), but is it possible to change the calendar that an event is on, after adding it to iPhone? In other words, first adding to Calendar an event to any of several calendars I have on my phone ("Home," for example), then going back to edit it to change the calendar to "Work," all from the phone itself? Going back to edit an event allows changing Title/Location, Starts/Ends, Repeat, Alert, Notes. Any thoughts? Thanks!

    The option to change the calendar in edit mode is missing, which is a glaring oversight by Apple. I really makes no sense to omit this option. I will be very disappointed if it is not added in the next update. You either have to delete and add it as a new event in the proper calendar, or edit it in iCal on the computer.

  • Is it possible to edit the table that contains sites with the passwords?

    for certain sites Firefox does not ask to remember the password, therefore this site will not appear in the security-table. By editing the table this problem could be bypassed.

    *Saved Password Editor: https://addons.mozilla.org/firefox/addon/saved-password-editor/

  • CL_GUI_ALV_TREE - Possible to edit the table cells in situ?

    Hi
    I am working on my first CL_GUI_ALV_TREE report.  The hierarchy is in place and the fields come through ok on the table side.  However,  I would now like to edit the fields.  I have the checkbox showing in the tree control and the row is set to editable.  Am I able to edit the fields in the table side in situ, as I would do in the CL_GUI_ALV_GRID control i.e. using mc_style_enabled/disabled?  These attributes are not present in the class builder so I presume not.  Is there another way? 
    Cheers
    Ian

    Hi
    module user_command_0100 input.
      DATA return TYPE REF TO cl_gui_event.
      save_ok = ok_code.
      case ok_code.
        when 'EXIT' or 'BACK' or 'CANC'.
        Exit program
          leave to screen 0.
      Process ALVtree user actions     
        when others.
          call method cl_gui_cfw=>get_current_event_object
                  receiving
                     event_object = return.
          call method cl_gui_cfw=>dispatch.
      endcase.
    endmodule.                 " USER_COMMAND_0100  INPUT
    check this code and call method cl_gui_cfw
    hope this helps u....
    Reward points if useful...
    Regards
    Sreenivas

  • Is it possible to edit the .ini of an executable and be able to add the desired ip addresses for browser access?

    Hi, I created an executable and would like to add browser access ip addresses. Can this be done by editing the corresponding .ini file
    if so how should I add a new line or can I modified an existing one (key).
    Thanks 

    These lines, for example, enable access for everyone:
    server.tcp.enabled=TRUE
    server.tcp.access=+*
    Other lines can set things like the port number, but I don't have them at the moment because I use the default. If you search the LAVA wiki, you should find an article about INI settings you can use.
    As I said, if you compile the executable and use the original LabVIEW menu structure (VI Properties>>Window Appearance>>Customize>>Show Menu Bar), you will have the option of going into the Options screen of the application. In there, you will be able to set this. You can then compile the application again without the menus visible.
    Try to take over the world!

  • Possible to edit the metadata for iTunes music?

    I'm trying to consolidate my iTunes libraries from 3 computers onto one. I used senuti to transfer my music from my MBP and another iMac onto my main iMac via my iPod and must not have specified that I wanted to import the metadata along with the tunes themselves. I now need to sort my music by "date added" and find that a whole chunk of my library shows the date/time of the senuti imports instead of the date the songs were originally added to iTunes. As a result, since all of the imported songs show the exact same date and time of being added, when I sort by "date added" I get a long alphabetical listing of all the songs I imported, instead of listing them album-by-album.
    Is there a way to edit the metadata for the music I senutied, so I can have the correct "date added" info for the albums?

    Sorry I wasn't clear about the Time Machine reference. I was explaining my reluctance to roll back to a previous version of my main library if the changes I had made to the MBP library were going to prevent me from importing its .xml.
    Chris CA wrote:
    Once you import the songs, you should be able to import the iTunes library.xml file from the other libraries to update this info with the songs you just added.
    How exactly do I do this? As a test, I tried making a new library and importing just a few songs, all of which came in with today's date. Using the WAG approach to importing the .xml, I tried using "add to library" and selecting the .xml of the real iTunes library. Nothing happened. I then tried "import playlist" and selecting the real library's .xml, which triggered the import of all of my songs, all with today's date. I suppose that today's date could be a function of using a just-created library for my test, but...
    Clearly my guesses were off the mark, so I could use a little more guidance.

  • Urgent - How to deactivate the popup reminder window

    I want to know how to deactivate the reminder popup window when you restart a Captivate movie.
    I have an application made with Flash that load in wrapper some captivate movie. When i load a movie that i 've just loaded before, a popup reminder window with "do you want to continue from last slide..?"  appears. How can I deactivate this popup? Or Is it possible to change the language text of this window?
    Thank you very much for your help

    I believe that is controlled by the 'self paced learning' option in the table of contents settings.
    in windows, Project > Table of Contents > Settings (under the list of the TOC)

  • Possible to display the POP-UP WINDOW???

    Hi,
    I need to copy or some times need to paste or some task which is very easily displayed in Microsoft products which is called POP-UP WINDOW.
    Can I Use that in my form? I am working in Developer 6i.
    Farhad

    Hi farhad,
    I told u the way u can create the popup for the any item through object navigator. Please refer online help for details. There is clearcut picture in online help about the topic u asked. I think u are a developer, instead of asking sample, please refer Formbuilder reference guide which available in otn.documentation, which help u a lot and u can solve the problem on your own
    regards
    prasanth a.s.

  • User info couldn't be get from info table from popup lov window

    Hi,
    I'm tring to implement authorization on my test project. I'm tring to filter the data in pop-up lov window accoriding to logged user but in the below code, the userId is read as null. I have copied the code from developer guide and it works well on the other part of my project.
    Thanks,
    package steff.test.persistence.bc4j;
    import oracle.jbo.server.ViewObjectImpl;
    import oracle.jbo.RowIterator;
    import oracle.jheadstart.persistence.bc4j.common.Bc4jDBTransaction;
    import oracle.cle.resource.User;
    // --- File generated by Oracle Business Components for Java.
    public class SupplierCompanyViewImpl extends ViewObjectImpl
    * This is the default constructor (do not remove)
    public SupplierCompanyViewImpl()
    private void brAuthorizedQuery(Object p0, Object[] whereParams,
    int numOfParams)
    Bc4jDBTransaction trans = (Bc4jDBTransaction)getDBTransaction();
    User user = trans.getUser();
    String userId = "";
    String initialWhereClause = getWhereClause();
    String whereClause = "";
    if (!(user==null))
    userId = user.getUserId();
    else
    userId = "NONE";
    if (!(initialWhereClause == null))
    whereClause = initialWhereClause + " AND ";
    whereClause = whereClause +
    "QRSLT.COMPANY_CODE IN (" +
    " SELECT UACompany.COMPANY_CODE FROM UA_COMPANY UaCompany WHERE USER_ID=:1" +
    System.out.println(userId);
    setWhereClause(whereClause);
    Object[] tempArray = new Object[numOfParams + 1];
    for (int i=0; i < numOfParams; i++)
    tempArray[i] = whereParams;
    tempArray[numOfParams] = userId;
    whereParams = tempArray;
    numOfParams = numOfParams + 1;
    super.executeQueryForCollection(p0, whereParams, numOfParams);
    setWhereClause(initialWhereClause);
    protected void executeQueryForCollection(Object p0, Object[] p1, int p2)
    // had to move call to super inside br method
    brAuthorizedQuery(p0, p1, p2);

    I found a solution to my problem. It can achieve to filter the displayed data in lov in a not secure way. ı custumised the lov.jsp and the other related jsps for parameter passing. I added the following lines.
    // Construct the search criterium
    ArrayList arguments = new ArrayList();
    String[] searchcriterium = {displayAttr,"LIKE",text};
    String queryName = className.substring(className.lastIndexOf(".")+1)+"Lov";
    arguments.add(searchcriterium);
    if (filterAttr != null && !filterAttr.equals("") && !filterAttr.equals("null")) {
    String[] searchcriterium2 = {filterAttr,"=",filterValue};
    arguments.add(searchcriterium2);
    Thanks for all your answers.

Maybe you are looking for