Apex 4.02 BUG: text field with AutoComplete. wrong help text

The rest of the wizard for a text field with AutoComplete you reach a screen where you can enter an LOV query. The text of the query box has following help text

Enter the query that returns the list of values. The query must select two columns in the following order, first a display value then a return value. For example:

Select ename, empno
WCP


When you select two identical columns, remember to use the single column alias, for example:

Select d, r ename ename
WCP

However, the query must return only 1 value.

Thank you, Rene, I fixed in 4.1.

Concerning
Patrick
-----------
My Blog: http://www.inside-oracle-apex.com
APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
Twitter: http://www.twitter.com/patrickwolf

Tags: Database

Similar Questions

  • Text field with AutoComplete do not store Item Value for Cascading LOV

    Hello

    I have created a form to the APEX 4.2, and two elements on the page have a problem. The first point is a text field with AutoComplete for the PROVIDER. The second element is a list select number that has the PROVIDER as part of waterfall to fill.

    When a user selects one of the values that the field can be seized semiautomatic provider , the value autocomplété should make the selection list produce the numbers respective associated PROVIDER. The problem that I am running is that AutoComplete is not give PROVIDER selection list value is filled.

    For example: if I type 'st' in the PROVIDER field that autocompletes to "steve" is selected, the NUMBER field must interrogate him for the numbers where VENDOR = steve. However, after reviewing the Session State from the PROVIDER element, the contained value is always only "st."



    Here are the settings I have for the field PROVIDER : and NUMBER:

    name.JPGnumber.JPG

    There should be a way to have the value of the seized field semi-automatic to account for what appears after selecting a value, but I don't know what it is. You can provide any help would be appreciated.

    Thank you!

    your query full auto would: select supplier_name | ' ('| supplier_id |') '

    provider AutoComplete onChange, get the supplier_id and then value the selected drop-down list by using this code.

  • Is it Apex_Item function for "text field with AutoComplete?

    Hi all
    Is it Apex_Item function for "text field with AutoComplete? I can't find it in the website http://apex.oracle.com/i/doc/AEAPI/apex_item.htm

    Respect,
    Taylor.

    Hello

    I think that there is not. If there is, it is not documented.

    You can use the normal text field and Add AutoComplete using jQuery UI and jQuery autocomplete plugin.
    Those who are willing to Apex 4

    See for example this post how manually to add autocomplete text field
    Plugin of JQuery autocomplete

    Kind regards
    Jari

  • How to create the equivalent of 'field with AutoComplete text' in a report updated

    I have a region based on a relationship of type "SQL Query (updateable report)". "

    The table that the report is based on a a comment field that users should be able to update.  Currently, it is defined as ' display as '-text field, to allow users to change.

    I want to be able to provide users a standard set of comments from which they can choose, if they wish, OR to put in another comment or to choose a standard comment and change, that is very much like a drop-down list box.

    Other types of fields can be defined as "text field with AutoComplete", which would be fine if I could put it on this area, but in such field, on this type of regions, it is not possible.

    Is it possible that I can create a work around to get the same effect.

    Thank you

    Dave

    Hello

    It turns out that due to my need is satisfied by the standard features.

    I was looking for "offering users a standard set of comments from which they can choose, if they wish, OR to put in another comment or to choose a standard comment and change, IE a lot as a combo box"

    The answer is a Popup LOV.  (As opposed to a Select list).

    Selecting a popup LOV will bring back the text in the field AND ALLOW the EDITION. And if you do not use the context menu, you can always change the field.

    If you want to get AutoComplete on it as well, then try code of Jari.

    Dave

  • Text field with AutoComplete is always NULL

    Greetings,

    I am new to Apex, so I don't know I'm missing something obvious. I use Apex 4.0.1 what I've done is created a form on a page of table and added a new text with page of AutoComplete element. This new field of text does not match a column in the table. What I'm trying to do, is allow the user to use the AutoComplete feature to make a choice. Then when the user submits the page, I want to use the substr function on the value of the field of AutoComplete and fill one of the fields in table. I tried using the PL/SQL functions in validations and calculations, but I found that the autocomplete field value is always NULL. I can access the other fields that are associated with a fine table column. It must be something simple. Thanks for your help.
    Page Items
    P2_F1  - text field with auto complete. Not associated with a table column
    P2_F2 – Text field. Is associate with a table column
    This is what I want to do:
    
    Entered this in a validation
    begin
    if :P2_F1 is not null then
       :P2_F2 := substr(:P2_F1,1,5);
    end if;
    end;
    Thanks again

    Published by: LRM on 22 January 2011 17:25

    Hello

    In calculations, you must use:

    Item name: P2_F2
    Type: SQL Expression
    Point calculation: after submit
    calculation: substr(:P2_F1,1,5)
    Condition type: the value of element in the expression is not null
    Expression 1: P2_F1

    Kind regards

    Patel Kartik
    ---------------------------------------------------------------
    http://patelkartik.blogspot.com/
    http://Apex.Oracle.com/pls/Apex/f?p=9904351712:1

  • Text field with AutoComplete and refreshing a report

    Hello

    I use Apex 4.0.1 and XE 10 g

    I have a page with the two regions. The first region is a region of HTML with a single field: P331_SELECT_TITLE. The second area contains a report of books.

    Currently, the P331_SELECT_TITLE field is a Select list. This field has an LOV which covers the page field the field in the table:
    Select the TITLE display_value, TITLE return_value
    of LIB_BOOK_T
    order of Upper (TITLE)

    It works very well on a technical level, but the user experience is a problem for slow typers who are bind to type the first words of a book title. If they slowly type the word "Real", they'll get books starting with R, then books beginning with E, etc. I read on the AutoComplete and wanted to use this feature. It seems to work well to set the P331_SELECT_LIST field, but it seems I can't bet seized semiautomatic and the updating of the report working together.

    What I would like to ask you is: Using Autocomplete and the removal of the "return value" on the LOV, have the user type in a part of the title of the book and have this little pop-up window will appear to the user. When the user selects their choice with a click of the mouse, I would like to have the report in the second region update to account for all of the selected book. I tried dynamic actions, but I can't get AutoComplete, a mouse and a refreshment to work together.

    Thanks for taking a peek at this

    Hello!

    Create a dynamic Action:
    event: change
    Selection type: elements
    Agenda:

    Action to be fired
    Action: update
    Selection type: region
    Region:

    In the report query, you filter the results according to the value of your POINT.

    Published by: NoGot on 20.09.2011 22:39

  • Fill a field with the results of the other (sort and add custom text)

    I have a PDF form with many fields popup asking 'Yes', 'Maybe' or 'no '. I need a way to collect the answers and sorting, all the 'yes' first of all, that all the 'maybe', all the 'no '. When I need after that sort of response of three, is put in a 'Results' field with the container of the ToolTips for each popup and the ability to add a "BOLD" text, between three sorted responses.

    I have found some javascript in the forum here to collect data from field only. It seems to be easy to modify if you have several fields to collect/sorting/extract.

    Assistance or management to do will be appreciated.

    Thank you!

    Assuming that you have 50 menus named A1, A2... A50 and each drop-down list has three elements (Yes, maybe, no), you could do something like:

    Initialize object to contain the info of the answer

    var oResponse = {}

    'Yes': [],.

    "Maybe": [],.

    ['No':]

    };

    var i, f;

    Browse fields (A1, A2... A50)

    for (i = 1; i<= 50;="" i="" +="1)">

    Get a reference to the current field

    f = getField ("A" + i);

    Add ToolTip text of the current field to the corresponding table in the response object

    oResponse [f.valueAsString] .push (f.userName);

    }

    Generate the output string

    aOutput var = [];

    If (oResponse ['yes'] .length > 0) aOutput.push ("It's the priority YES\r" + oResponse ["Yes"] .join ("\r"));

    If (oResponse ["Maybe"] .length > 0) aOutput.push ("It's the priority MAYBE\r" + oResponse ["Maybe"] .join ("\r"));

    If (oResponse ['No'] .length > 0) aOutput.push ("It's the priority NO\r" + oResponse ["No"] .join ("\r"));

    Enter the results

    getField("Results").value = aOutput.join("\r\r");

  • When a box is checked, fill a text field with a value

    I don't know that it's simple; However, I am very new to acrobat and javascript.

    Here's what I want to do:

    I have a checkbox field and a text field. If the checkbox is turned "on" I want to fill the text field with a specific numeric value.  If she isn't 'unchecked' there is not value or value 0.  Any help is appreciated.

    Enter this code in the custom of your text field calculation script:

    This.getField("CheckBox1").value = Event.Value == "Off"? 0: 1234;

  • Creating a page of my Web site that allows users to fill out text fields, with basic formulation tools (text sizes, formatting, etc.).

    Hey, I would like to create a page on my Web site that allows users to fill out text fields, with basic formulation tools (text sizes, formatting, etc.).

    Another thing I need to allow users must be able to upload their own graphics to the pre-assigned fields. Thank you please advise me on how I would go to this topic.

    Nothing to do with the Muse. You need a system dynamic as Joomla, Wordpress, Drupal and so on. Otherwise, there is no way to store your information.

    Mylenium

  • Problems with the filling of a text field with 2 other fields data


    I have 3 domains Tools_1a_pri, Tools_1a_pri_other, Tools_1a_pri_txt.

    Tools_1a_pri is a drop-down list box with a predefined list. One of the options is the 'other '.  If 'Other' is selected, the text Tools_1a_pri_other field becomes visible for users to enter the name of the other tool.

    The Tools_1a_pri_txt is a text field with a calculation that shows a text indicating that no tool has been selected or the Tools_1a_pri & or Tools_1a_pri_other.

    When I select one of the predefined tools, everything works.  When I choose the other, it seems that nothing has changed.  Must I click another field before.  It's confusing for the user.

    Tools_1a_pri validate code
    this.getField("Tools_1a_pri_Other").display = event.value is "Other"? Display.visible: display.hidden;

    Computer Tools_1a_pri_txt code
    If nothing is selected, follow these steps
    If (getField("Tools_1a_pri").value.length < 2) {}
    event.target.textColor = color.red
    Event.Value = "no identified main tool";
    } else if (getField("Tools_1a_pri").value! = 'Other') {}
    If not do that if the other is selected
    event.target.textColor = color.black
    Event.Value = getField("Tools_1a_pri").value;
    } else if (getField("Tools_1a_pri").value = 'Other') {}
    If not do so if the other is not selected
    event.target.textColor = color.black
    GetField("Tools_1a_pri").value = Event.Value + "-" + getField("Tools_1a_pri_Other").value;
    }

    You have made the classic mistake of using the assignment operator in a statement instead of the comparison operator. Change this line:
    } else if (getField("Tools_1a_pri").value = 'Other') {}

    To do this:

    } Else if (getField("Tools_1a_pri").value == 'Other') {}

  • Ghost of text for a text field with Add Action

    I have a text field with text ghost. Also, there is a button to add additional text fields. When a user clicks on the 'add an additional text field button' new text field appears but without the ghost of the original text field text. I tried the script of the click event of the button to fire or run:

    textfield.execEvent("ready:form"); or textfield.execEvent("form:ready");

    Why 2 ways? LiveCycle has two ways to present it:

    (1) on the drop-down list for events (e.g. form: ready)

    (2) on the name of the field at the top of the script after box selected event on the menu drop-down (for example textfield.ready:form: :-(Javascript, client)

    Is there a better way to do it? My concern is that if I managed to shoot the event form: ready or ready: shape the event can reset all the text from the original text of default ghost of "Kansas City Royals. Thank you

    https://workspaces.Acrobat.com/?d=w3PioRrv8DUp2ruhoOY * 8g

    Put your event form script: ready in the initialize event.

    Kyle

  • How to add an animation to a text field with two lines?

    I have a text field with two or more lines. Why is it not possible now to apply a text animation?àpe_textfield.jpg

    Animating text, by design, only works on a single line of text.

    To use it for multiple lines, you can either create two separate titles or keyframing to create your own animation effect.

  • the field with color display

    APEX - 4
    Version of DB - 10 g
    Web - OHS server architecture
    Browser - IE8
    Theme - 5

    Hello

    I'm trying to display a value in a text field in red. I can do for a regular with editable field

    document.getElementById('P4_HOLD_NAME_DESC').style.color = 'red '.

    but I want to display the field as text field and disabled, it will work if I change to display only but I lose the border around the
    field value.

    Any help would be appreciated.

    Thank you

    Hello
    You can add in the 'Javascript' attributes 'Page' section under ' run when Page Loads. Another way is to create a dynamic action advanced with an event' of the 'Page Load' and 'Action', 'execute JavaScript code.

    Thank you

    Paul

  • Firefox on windows 8.1 is AutoFill password field when autocomplete is disabled.

    Hello.

    Firefox (latest version) for windows is auto-fill a password field, even with AutoComplete is turned off.

    The HTML code for the fields are:

    < input name = seized semiautomatic "member_password1" = "off" type = "password" >


    < input name = seized semiautomatic "member_password2" = "off" type = "password" >


    Leave the empty password to automatically generate a password

    In all other browsers, it works very well, and the saved password is not added, but Firefox on Windows 8.1 it is be populated automatically, with the registered user password.

    Thanks - I'll see what I can find. Almost a shame Mozilla simply ignores these fields well.

    Such is life!

  • I'm looking to have an input field with the search button, search button click the search button below the search results to display. How can I do?

    I'm looking to have an input field with the search button, search button click the search button below the search results to display. How can I do?

    Hello

    998765 wrote:

    You are right

    Please pass by the database 2 day + Application Express Developer's Guide

    Check this code example

    1 create a text field element I say P1_INPUT_FIELD

    2. create a button

    Name of the button: search

    Action: Send the page

    3. change your report query and where clause to your query below

    It will search on ename and empno, in this way, you can add more columns

    SELECT EMPNO
               , ENAME
               , SAL
               , MGR
               , COMM
      FROM EMP
    WHERE TRIM(UPPER(ENAME)) like '%' || TRIM(UPPER(:P1_INPUT_FIELD)) || '%'
           OR TRIM(UPPER(EMPNO)) like '%' || TRIM(UPPER(:P1_INPUT_FIELD)) || '%'
    

    4. we find the source of the region-> page article to submit-> P1_INPUT_FIELD

    Hope this helps you,

    Kind regards

    Jitendra

Maybe you are looking for

  • iMovie can't see photos optimised and stored in iCloud

    Hello Apparently if you chose "Optimize Mac storage" in the preferences of Photos, and you use iCloud library, then apps like iMovie and Final Cut Pro will not see your photos at all. Sometimes you can see some pictures at random, unless some reason

  • Apple replaces iPhone 5 c batteries free of charge to the United Kingdom?

    My iPhone 5 c screen begins to appear at the top left and top right, I heard that this is caused by a bulging battery, so I was wondering if change the batteries Apple for an iPhone free 5 c to the United Kingdom? I do not have a warranty

  • Just my monitor black and white...

    Recently, I unplugged my computer to move to a new apartment.  When I reconnected everything, my only black and white monitors.  If I press on the screen menu, this menu appears in bright blue.  When I restart... the HP loading screen is also bright

  • Can not connect to Facebook with Sony NEX 5r

    He worked for several months and then suddenly stopped working. I get an error message on Facebook saying: I am not connected, but does not give me an option to connect. I tried to reset to factory settings and reinstall the application, but not luck

  • Several receive activities in a BPEL

    Hi, I'm trying to have multiple receive activities in a BPEL (both receive have create instance option checked)... Reason is I have 1 FTP server but 2 different folders (I created an FTP adapter for each file) from this FTP server I read of... Howeve