Autocomplete Ajax values

The Ajax auto-complete component showed client side error messages for certain auto complete values returned.
I noticed that the error message was caused by return values that had angle brackets in it. Removing the angle brackets in the retun values fixed the issue.
However later on I found that I was getting the same error message for some other character.
Does anyone know the characters that the auto complete component does not like / is there a way around so that it accepts any character in the menu list?

You probably just need to perform HTML-style escaping in your server-side method. In other words, use &lt; instead of < etc.

Similar Messages

  • Set ajax value to the textbox[in modal box jquery]

    Hi,
    In my page i have one interactive report with 2 button add and edit, i have used modal box j-query for the button add and edit. Adding the data through modal box working fine.
    when tried to edit the existing data i am not able set the data to the corresponding textbox in apex.
    please find my modal box script:
    <link rel="stylesheet" href="#APP_IMAGES#modal-jquery-ui.css" type="text/css">
    <script src=#APP_IMAGES#modal-jquery.js type="text/javascript"></script>
    <script src=#APP_IMAGES#modal-jquery-ui.js type="text/javascript"></script>
    <script type="text/javascript">
    $( function() {  
         $('#ModalForm').dialog({       
              modal : true ,
    width: 550,
    height: 300,
              autoOpen : false,
    resizable: false,
              buttons : {           
                   Cancel : function() {               
                        closeForm();
                   Add : function() {                    
                        addPerson();
    $('#ModalForm1').dialog({       
              modal : true ,
    width: 550,
    height: 300,
              autoOpen : false,
    resizable: false,
              buttons : {           
                   Cancel : function() {               
                        closeForm1();
                   Update : function() {                    
                        updateperson();
    function openForm(){   
         $('#ModalForm').dialog('open');
    function openFormclose(){   
         $('#ModalForm1').dialog('open');
    alert('opened');
    var updateval = document.getElementById('P37_UPDATEID').value;
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value, 'APPLICATION_PROCESS=updateperson',0);
    get.add('P37_UPDATEID',updateval);
    var gReturn = get.get();
    alert(gReturn);
    document.getElementById('P37_UPADATEPRONAME').value = gReturn;
    function closeForm1(){   
         $('#ModalForm1 input[type="text"]').val('');
         $('#ModalForm1').dialog('close');
    function closeForm(){   
         $('#ModalForm input[type="text"]').val('');
         $('#ModalForm').dialog('close');
    function addPerson(){
         if (document.getElementById('P37_ADDSOFTDETAILS').value == ""){
              alert('Please Enter Software Details.');
              return false;
         if (document.getElementById('P37_ADDSOFTVERSION').value == ""){
              alert('Please Enter Software Version.');
              return false;
         if (document.getElementById('P37_STANDARD').value == ""){
              alert('Please Enter Software Standard.');
              return false;
              var ajaxRequest = new htmldb_Get( null , &APP_ID. , 'APPLICATION_PROCESS=addPerson', 0);
              ajaxRequest.add( 'P37_ADDSOFTDETAILS', $v('P37_ADDSOFTDETAILS'));
         ajaxRequest.add( 'P37_ADDSOFTVERSION', $v('P37_ADDSOFTVERSION'));
              ajaxRequest.add( 'P37_STANDARD', $v('P37_STANDARD'));
              ajaxRequest.get();
              ajaxRequest = null;
              closeForm();
              gReport.search('SEARCH');
    </script>
    and find the corresponding on demand process below:
    addPerson:
    DECLARE
    BEGIN
    INSERT INTO xxxxxx.yyyyyyyyyy (
    INT_PRODUCT_SEQ,
    INT_PRODUCT_NAME,
    INT_PRODUCT_VERSION,
    INT_PRODUCT_VERSION_DEFINE,
    CREATED_BY,
    CREATED_DATE
    VALUES (xxxxxx.INT_ADD_SOFTDETAILS_SEQ.NEXTVAL,
    :P37_ADDSOFTDETAILS,
    :P37_ADDSOFTVERSION,
    :P37_STANDARD,
    V ('APP_USER'),
    SYSDATE);
    COMMIT;
    apex_application.g_print_success_message := 'Record Inserted Successfully.';
    EXCEPTION
    WHEN OTHERS
    THEN
    apex_application.g_print_success_message := 'Falied to Inserted Data.';
    END;
    and updateperson: is
    DECLARE
    v_product_name varchar2 (240);
    v_product_version varchar2 (240);
    v_product_version_standard varchar2 (240);
    v_update varchar2 (240);
    BEGIN
    BEGIN
    SELECT INT_PRODUCT_NAME,
    INT_PRODUCT_VERSION,
    INT_PRODUCT_VERSION_DEFINE
    INTO v_product_name, v_product_version, v_product_version_standard
    FROM xxxxxxx.yyyyyyyyy
    WHERE INT_PRODUCT_SEQ = :P37_UPDATEID;
    HTP.prn (v_product_name);
    EXCEPTION
    WHEN OTHERS
    THEN
    HTP.prn( 'An error was encountered - '
    || SQLCODE
    || ' -ERROR- '
    || SQLERRM);
    END;
    END;

    Hi,
    First of all:
    I can't find any definition of the function updateperson(); called in $('#ModalForm1').dialog - button Update.
    There is alert('opened'); only. There should be declaration of the updateperson() function.
    There isn't setting of the corresponding items when the update modal form opened.
    I use it this way.
    function openForm(v_add_details, v_add_softv, v_stand)
        $('#ModalForm').dialog('open');
        $s('P37_ADDSOFTDETAILS', v_add_details);
        $s('P37_ADDSOFTVERSION',  v_add_softv);
        $s('P37_STANDAR', v_stand));
    }where the P12_X ... items are the modal form items. and the v_ ... parameters are the parameters of corresponding columns from report. (you have there something like: redirect to URL: javascript: openFormclose();
    It should be changed to something like openFormclose('#P37_ADDSOFTDETAILS#', '#P37_ADDSOFTVERSION#', '#P37_STANDARD#');
    Maybe this example will guide to you a little :D
    otherwise try to reproduce your solution on apex.oracle.com. there i can modify your code to make it work.
    EDIT: I use the PLUGIN posted by Denes. It works well too. I used above solution before the plugin was released.
    regards
    J :D
    Edited by: jozef_SVK on 10.5.2013 4:07

  • Weblogic Portal 10.0 Autocomplete AJAX drop down list

    I realized I put this in the wrong forum, I moved it to the WLP forum, sorry.
    Edited by: user10192987 on Aug 27, 2008 9:19 PM

    U need to use LAF dependies file to load ur dojo js files.
    U can follow the steps given in below link.
    http://edocs.beasys.com/wlp/docs102/clientdev/setup.html
    And i need a favour from u. How u are calling an action in controller from a jsp using dojo. I mean what is the url u are using?
    Plz reply me as early as u can.
    Thanks,
    Srinivas M.S.

  • Smart value help autocomplete doesn't work

    Hello,
    We are using CRM 7.0. We want to provide an autocomplete option for some customer input field.
    We decided to implement it with smart value help (F4) functionality. This customer field belongs to the customer Z view.
    When we use this Z view in the Z component, autocomplete wotks fine but when we use it in the standard component, F4 popup help works but autocomplete (smart value help) doesn't work.
    We would appreciate any help on this issue.
    Thanks in advance,
    Sergey

    Your .zshrc is only read when you start a new shell: https://wiki.archlinux.org/index.php/Zs … tion_files

  • HotFixes for autocomplete popup location

    Hi ,
    As you all know the popup location is appearing outside the grid panel when u place ajax autocomplete ajax component inside grid panel/ table / group panel .
    i wonder when the hotfixes for this will be ready or is there any workaround?
    Thanks.

    yea.
    i think that is the problem.
    i have a autocomplete textfield under groupPanel and this groupPanel is located under gridPanel
    and the resultiing popup list is located outside the panel itself.
    Thanks.
    Can u refer me to the bug URL?
    is there any workaround for this?
    Thanks

  • CFC 403 Forbidden Error

    I am trying to invoke a CFC via a URL:
    $(function () {
        'use strict';
        // Load countries then initialize plugin:
        $.ajax({
               url: 'https://....countries.cfc?method=getCountries',
           // url: '/autocomplete/content/countries.txt',
            dataType: 'json'
        }).done(function (source) {
            var countriesArray = $.map(source, function (value, key) { return { value: value, data: key }; }),
                countries = $.map(source, function (value) { return value; });
    And get the following error:
    NetworkError: 403 Forbidden -
    Any help in fixing this would be appreciated.

    I intalled HTTP Trace it gives me no errors
    Firebug doesn't either.
    I am using a full https path. Yes the page is served securely.
    Here is the code: (Domain removed because its our DEV server)
    /*jslint  browser: true, white: true, plusplus: true */
    /*global $: true */
    $(function () {
        'use strict';
        // Load countries then initialize plugin:
        $.ajax({
                url: 'https://...../countries.cfc?method=getCountries',
            dataType: 'json'
        }).done(function (source) {
            var countriesArray = $.map(source, function (value, key) { return { value: value, data: key }; }),
                countries = $.map(source, function (value) { return value; });
            // Setup jQuery ajax mock:
            $.mockjax({
                url: '*',
                responseTime: 2000,
                response: function (settings) {
                    var query = settings.data.query,
                        queryLowerCase = query.toLowerCase(),
                        re = new RegExp('\\b' + $.Autocomplete.utils.escapeRegExChars(queryLowerCase), 'gi'),
                        suggestions = $.grep(countriesArray, function (country) {
                             // return country.value.toLowerCase().indexOf(queryLowerCase) === 0;
                            return re.test(country.value);
                        response = {
                            query: query,
                            suggestions: suggestions
                    this.responseText = JSON.stringify(response);
            // Initialize ajax autocomplete:
            $('#autocomplete-ajax').autocomplete({
                // serviceUrl: '/autosuggest/service/url',
                lookup: countriesArray,
                lookupFilter: function(suggestion, originalQuery, queryLowerCase) {
                    var re = new RegExp('\\b' + $.Autocomplete.utils.escapeRegExChars(queryLowerCase), 'gi');
                    return re.test(suggestion.value);
                onSelect: function(suggestion) {
                    $('#selction-ajax').html('Selected Country: ' + suggestion.value + ', ' + suggestion.data);
                onHint: function (hint) {
                    $('#autocomplete-ajax-x').val(hint);
                onInvalidateSelection: function() {
                    $('#selction-ajax').html('Selected Country: none');
            // Initialize autocomplete with local lookup:
            $('#autocomplete').autocomplete({
                lookup: countriesArray,
                onSelect: function (suggestion) {
                    $('#selection').html('Selected Country: ' + suggestion.value + ', ' + suggestion.data);
            // Initialize autocomplete with custom appendTo:
            $('#autocomplete-custom-append').autocomplete({
                lookup: countriesArray,
                appendTo: '#suggestions-container'
            // Initialize autocomplete with custom appendTo:
            $('#autocomplete-dynamic').autocomplete({
                lookup: countriesArray

  • FYI - websphere6.1 and studio 1.4 export war

    Hi. I have a simple studio webapp with 2 page fragments(from tutorial), an autocomplete ajax component, and several JSPs. So far the only fix for WAS 6.0 was to export from creator as a 1.3 war file. That broke autocomplete for me so I stuck with the 1.4 export. Got everthing working on version 6, fixpac 2, by setting classloaders to "parent last" and providing the web-facesconfig_1_1.dtd file. Page fragments still didn;t work though.
    I went to WAS 6.1 and everything worked except fragments with no classloader monkeying. Went to 6.1 fixpac 1, and still no fragments plus navigation now broken. switched war file to "application classloader (only war-ear file not required) and navigation worked again.
    I then got my fragments by switching to <jsp:include page= instead of <jsp:directive.include file=, but back in creator when adding more buttons and such to the page, then deploying to was 6.1.0.0.1 the actions for the buttons never got called. No editing of xml headers in the fragments was required.
    I tried some jspdirectives in WEB-INF/ibm-web-ext.xmi. Finally found an option not listed with the rest of them and then added components to JSPs containing the fragments worked. I also loaded the war into the ATK and got a ibm webapp id that way. the option I added was <jspAttributes xmi:id="JSPAttribute_2" name="jdkSourceLevel" value="14"/>. Turns out this defaults to 13 or jdk 1.3. Now all the action methods on JSP pages containing fragments worked. I added one other option, <jspAttributes xmi:id="JSPAttribute_3" name="jsp.file.extensions" value="*.jspf"/>, but don't know if this did anything.
    I'd like to remove the fixpac so I wouldn't have to monkey with the classloaders to have navigation, but I've spent too much time already with page fragment and J2EE 1.4. We have J2EE5 out, 1.4 is solid, so I personally don't like the 1.3 solution for the export war. We have JSP 2 out but JSP1.2 won't do the fragments. I can't think of anything to say except foobar. It may be that the 14 jdk option also fixed navigation in 6.1.0.1 and I can return the classloader from app to parent, but I haven't tried that yet.

    The list is requesting I reply to myself. OK. Setting the classloader on websphere 6.1 fixpac 1 back to parent first from "application" did not restore navigation. So I am staying here with classloader set to "application". My recommendation is to use 6.1 with no fixpac 1. Only have to deal with jsp:include, and <jspAttributes xmi:id="JSPAttribute_2" name="jdkSourceLevel" value="14"/> in web-inf/ibm-web-ext.xmi.
    The only gotcha with using jsp:iclude page= instead of jsp:directive.include file=, is that back in Creator2 the included fragments(.jspf) do not show up on the JSPs they are included in. You just have to know they're there. The fragments themselves are right there with the other web pages in the project if you want to look at them.
    The fragments still show up on the Sun App server when deploying and running within Creator 2. So. for me, this is a workable solution. I can still design and test faces 1.1 in Creator2 and deploy to websphere 6.1, which has faces 1.1 support jars bundled now, as well as the 1.1 dtd for faces-config.

  • Windows RDS - configuring a default connection & desktop

    I'm looking at remote desktop options and used terminal services in the past.  I'm configuring remote desktop services on a Windows 2008 R2 server.  The goal is
    to allow users to go to a web page, pull up a remote desktop and access apps & server shares inside the network.
    I have it installed, and am able to get a connection using \\server\rdweb.  However, that takes me to the RDS default connection page. If I click on remote desktop it asks what computer I want to connect
    to.
    What I want to do is configure this or another web page to automatically connect to a default profile I've configured with various apps, or to create a new profile based on the user's login name like any PC
    does when you login with a new user ID.
    I'm sure it's in the documentation somewhere, I haven't run across it yet.

    Hi,
    Thanks for your posting in Windows Server Forum.
    As per your comment, I can say that you can try to change the login web page of RD web where you can place the default domain and user name for that user. 
    You can make changes on login.aspx file on “%windir%\Web\RDWeb\Pages\<The Language of Your Location>\”path as below:
    Change the original code section:
    <input id=”DomainUserName” name=”DomainUserName” type=”text” class=”textInputField” runat=”server” size=”25” autocomplete=”off” />
    to be:
    <input id=”DomainUserName” name=”DomainUserName” type=”text” class=”textInputField” runat=”server” size=”25” autocomplete=”off”
    value=”domainname\” />
    Please refer below thread for more information.
    How to set default logon domain RD Gateway and/or RD
    Web
    Hope it helps!
    Thanks,
    Dharmesh

  • Where clause with conditions

    Hi all,
    I have a report that is to be filtered based on user input into a text field and drop down list.
    The goal is to let the user enter either an exact value (based off auto-complete functionality), or use the wildcard character, %
    This is where the drop down comes in. If they select value1, the autocomplete, exact value is used and the where clause would look like something below,
    select col1, col2, col3
    from table
    where :P1_FILTER in (select distinct col2 from another_table)If they select value2, then the where should process using the like function and %s. Something like,
    select col1, col2, col3
    from table
    where :P1_FILTER like (select distinct col2 from another_table)How can I take care of this in 1 where clause? I'm sort of stuck trying to figure it out.
    Thank you for any help.
    -Chris

    I don't believe the way you have it coded is correct.. Can you move it over o SQL Developer of the SQL Commands page in APEX and trying running your query? If it doesn't work there then your SQL is coded wrong.
    Since you are trying to have One or The Other condition be used for your query, I would think the Function returning Sql Code would be the obvious selection, but I could be wrong here...
    Thank you,
    Tony Miller
    Webster, TX
    A lady came up to me on the street, pointed at my suede jacket and said "Do you know a cow was murdered to make that jacket?"
    "I didn't know there were any witnesses", I replied " Now I'll have to kill you too"

  • Major issue with button in apex

    Hi All,
    I have uplaoded dhtmlxcombo.js files in apex under static files.
    Now i have created buttons in my report. whne i am clicking on that button i am geeting this error as "The webpage cannot be found".
    But when i have tried to remove js file, that button it is wroking fine. can any body help me out to reolve this issue.
    thanks,
    Anoo..

    The problem is with the dhtmlxcombo functionality. Basically it is taken some of the APEX generated HTML and replacing with it's own. That extra code is confusing the Apex engine.
    It appears it is taking the Apex generated SELECT code:
    <select name="p_t01" id="P1_EMP" size="1" class="selectlist"><option value="7876">ADAMS</option>
    <option value="7499">ALLEN</option>
    </select>and replacing it with:
    <span>
    <div class="dhx_combo_box " style="width: 200px;" _self="[object Object]" combo="[object Object]">
    <input class="dhx_combo_input" style="width: 181px;" type="text" autocomplete="off" value="KING"/>
    <input submitName="p_t01" type="hidden" value="7839"/>
    <input submitName="p_t01_new_value" type="hidden" value="false"/>
    <img class="dhx_combo_img" src="wwv_flow_file_mgr.get_file?p_security_group_id=61482197819270696224&p_fname=combo_select.gif"/>Specifically is is introducing an object with the name of "p_t01_new_value" that the Apex function does not know about.
    One workaround that may work is to create a dynamic action on the button that runs some jQuery code to remove the "new_value" objects before submitting the page:
    $('input[Name=p_t01_new_value]').remove();
    $('input[Name=p_t02_new_value]').remove();

  • JSF 2.0 h:selectBooleanCheckbox inside h:dataTable

    This is a bug to me... but better discuss it on the forum before
    simple test:
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html">
        <h:head>
            <title>test</title>
        </h:head>
        <h:body>
            <h:form>
                <h:selectBooleanCheckbox value="true" />
                <h:dataTable value="#{headerValues}" var="item" border="1">
                    <h:column>
                        <h:selectBooleanCheckbox value="true" />
                    </h:column>
                    <h:column>
                        <h:outputLabel value="#{item}" />
                    </h:column>
                </h:dataTable>
            </h:form>
        </h:body>
    </html>this is wrongly(second selectbooleanCheckbox has no value attribute, but the first has... as it should) translated into html as
    <body>
    <form enctype="application/x-www-form-urlencoded" action="/SOConfig/test.jsf" method="post" name="j_idt7" id="j_idt7">
    <input type="hidden" value="j_idt7" name="j_idt7"/>
    <input type="checkbox" checked="checked" name="j_idt7:j_idt8"/><table border="1">
    <tbody>
    <tr>
    <td><input type="checkbox" name="j_idt7:j_idt9:0:j_idt11"/></td>
    <td><label>
    {host=[Ljava.lang.String;@b3a89a, user-agent=[Ljava.lang.String;@1025044, accept=[Ljava.lang.String;@e3b250, accept-language=[Ljava.lang.String;@cfda09, accept-encoding=[Ljava.lang.String;@1f3b26c, accept-charset=[Ljava.lang.String;@46ec20, keep-alive=[Ljava.lang.String;@38323f, connection=[Ljava.lang.String;@16afea1, cookie=[Ljava.lang.String;@173124b}</label></td>
    </tr>
    </tbody>
    </table>
    <input type="hidden" autocomplete="off" value="8396162599460143799:8094137883032859720" id="javax.faces.ViewState" name="javax.faces.ViewState"/>
    </form></body>What do you think?
    Any workaround?
    Florin POP

    another variant is to make me a composite component
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:c="http://java.sun.com/jsp/jstl/core"
          xmlns:cc="http://java.sun.com/jsf/composite">
        <cc:interface>
            <cc:attribute name="value" required="true" />
            <cc:attribute name="label" />
        </cc:interface>
        <cc:implementation>
            [#{cc.attrs.value}]
            <c:if test="#{cc.attrs.label != null}"><label>#{cc.attrs.label}</label></c:if>
            <c:choose>
                <c:when test="#{cc.attrs.value == 'D'}">
                    <input type="checkbox" checked="checked" id="#{component.clientId}"/>
                </c:when>
                <c:when test="#{cc.attrs.value == 'N'}">
                    <input type="checkbox" id="#{component.clientId}"/>
                </c:when>
                <c:otherwise>
                    <input type="checkbox" id="#{component.clientId}" disabled="true"/>
                </c:otherwise>
            </c:choose>
        </cc:implementation>this either doesn't work in h:dataTable (somehow 'D' or 'N' are not evaluated and i find myself in otherwhise where... amazing where is evaluated as D )
    what am I doing wrong?
    Florin POP

  • Workflow notification that includes the recipient's name?

    Does anyone know how to make a workflow form the contact form come in with a Subject line that includes the person's/recipient's name? So your inbox is not just full of the same Email Subjects and finding an email from an individual can be easily distinguished? ie Sticking a {tag_recipientfirstname} in the approriate area?
    Any help is appreciated!
    Cheers,
    Pat

    The 'red' coloured font usually means that the email address/contact is not in any of your address books.
    However, there is a bug which is effecting the colour of the font even if in an address book under some circumstances. The developers are aware of it.
    It is possible to completely switch this off so red font does not occur.
    'Tools' > 'Options' > 'Advanced' > 'General' tab
    click on 'Config Editor' button
    it will tell you to be careful :)
    In top search type; autoComplete
    look for this line:-
    mail.autoComplete.highlightNonMatches; Value = 'True'
    Double click on that line to toggle the 'True' to 'False'
    Then close window - top right X
    click on OK to save changes to Options.
    Close and restart Thunderbird.

  • Group email: each recipient's name appears?

    I want to send a group email so that each recipient's address appears in the "To:" box. I don't want anyone to see anyone else's address so I uncheck "when sending to a a group, show all member addresses". The problem is that the "To:" now shows "undisclosed recipients". I want it to show each individual's address but not the other members of the gropu.
    If this can't be done, does anyone know of a client that can do this?
    Thanks

    The 'red' coloured font usually means that the email address/contact is not in any of your address books.
    However, there is a bug which is effecting the colour of the font even if in an address book under some circumstances. The developers are aware of it.
    It is possible to completely switch this off so red font does not occur.
    'Tools' > 'Options' > 'Advanced' > 'General' tab
    click on 'Config Editor' button
    it will tell you to be careful :)
    In top search type; autoComplete
    look for this line:-
    mail.autoComplete.highlightNonMatches; Value = 'True'
    Double click on that line to toggle the 'True' to 'False'
    Then close window - top right X
    click on OK to save changes to Options.
    Close and restart Thunderbird.

  • How to set default logon domain RD Gateway and/or RD Web

    I'm using Win2k8 R2 servers with WinXP clients.  When I logon to the RD Web page, and again to RD Gateway, I -have- to enter domain\username to authenticate.  Anyone know how I can set the default logon domain?  My users don't even know how to spell their username most of the time, let alone what domain they're in, and I only have one domain. 
    Thanks
    Mark

    Hello Mark,
    Thanks for your feedback.
    Based on your reply, I understand that you want to add a default domain name into Remote Desktop Web Access page, which helps the clients to know the domain their accounts are in.
    You can finish this task by customizing the default login page shipped with Remote Desktop Web Access services role. However, we don’t recommend you to do that in general, because:
    ·          The customization of the system-shipped page may cause unexpected risk or instability.
    ·          The future updates or service packs for related products may overwrite the modified version you customized.
    Based on the factors above, if you really need to do this customization, please note to backup both the original version and modified version of the login page, during the following customization steps:
    1.     Login to the Remote Desktop Web Access role-based server with local administrative permissions.
    2.     Navigate to the following location:
    %windir%\Web\RDWeb\Pages\<The Language of Your Location>\
    3.     Backup the login.aspx file to another location.
    4.     Right click the login.aspx file, and select Edit. The file will be opened with Edit status in your default HTML editor.
    5.     Change the original code section:
    <input id=”DomainUserName” name=”DomainUserName” type=”text” class=”textInputField” runat=”server” size=”25” autocomplete=”off” />
    to be:
    <input id=”DomainUserName” name=”DomainUserName” type=”text” class=”textInputField” runat=”server” size=”25” autocomplete=”off” value=”domainname\” />
    6.     Save the modification. Backup the modified version.
    Please test the issue again after the steps above. Let us know the result if possible. Thanks for your cooperation again.
    Lionel Chen
    TechNet Subscriber Support in forum
    If you have any feedback on our support, please contact [email protected]

  • Ajax Select Value + Ajax Autocomplete - using both on same item

    I am really loving this ApEx demo application as it is teaching me TONS of new things.
    It is by far the most helpful apex lesson site I have found:
    http://htmldb.oracle.com/pls/otn/f?p=31517:80
    I have a question regarding two of these lessons:
    Ajax Select Value
    Ajax Autocomplete
    I want to use these two for the same item.
    I have got both to work correctly individually.
    Here is my scenario:
    I have a <name> field that auto completes.
    It will set the <credit_limit> page item, according to what this <name> field has.
    The problem:
    Typing in the name without using the auto complete feature works as it displays the <credit_limit>.
    But, when I choose the name from the generated select list, it returns null.
    If I then remove a letter from the <name>, retype it (without selecting it from the list), tab; it will display the <credit_limit>.
    Any idea how to fix this?
    I want to be able to select the <name> from the auto complete select list and have it fill out the <credit_limit>.
    I found a post that might be related to this problem:
    Application Process is not fired when selecting from popup lov

    More information:
    P20_NAME_TX
    HTML Form Element Attributes: onKeyPress="checkEnter(event)" autocomplete="off" onChange="f_getPurchaseOrderCreditLimit()";
    I have also tried without the onKeyPress:
    autocomplete="off" onChange="f_getPurchaseOrderCreditLimit()";
    (It still functions the same without this except the enter key does not do anything; what does onKeyPress="checkEnter(event)" do?):
    HTML Header
    <script type="text/javascript" src="#WORKSPACE_IMAGES#textfield_autofilter.js"></script>
    <script language="javascript">
    NS4 = (document.layers ) ? true : false;
    function checkEnter(event)
    var code = 0;
    if (NS4)
    code = event.which;
    else
    code = event.keyCode;
    if (code==13)
    doSubmit('SEARCH');
    </script>
    <script language="JavaScript" type="text/javascript">
    function f_getPurchaseOrderCreditLimit ()
    var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=getPurchaseOrderCreditLimit',0);
    get.add('P20_NAME_TX',html_GetElement('P20_NAME_TX').value)
    gReturn = get.get();
    if(gReturn)
    {  html_GetElement('P20_CREDIT_LIMIT_CY').value = gReturn  }
    else
    {  html_GetElement('P20_CREDIT_LIMIT_CY').value = 'null'  }
    get = null;
    </script>

Maybe you are looking for

  • How do I take the pictures from my iPhones backup on iTunes and put them in iCloud and onto iPhoto?

    I want to take the photos from my old iphone 5 that is backed up on my itunes and but them on icloud and onto iphoto. Any help?

  • CS4 Photomerge doesn't work

    Photomerge doesn't work for me when I am trying to run it from Bridge or from Photoshop. Photoshop stitches the images but when the process is done the document closes, resulting in no image. The same issue has been discussed in this thread, but no s

  • Searching for literal strings in iTunes

    Is this possible? Using double quotations marks will not do the trick and it is important for me to search for a literal string. Does anyone know how to accomplish this?

  • Runnng external swf Actionscript while in fullscreen mode

    I am using Flash 9.0 (CS3 Pro). I am coding in Actionscript 3.0 I have two swf files, both interactive. During playback of the, a mouse event launches the second. I also want the mouse event to trigger a switch to fullscreen mode. The second swf is n

  • ISPCChart area color problem

    Hi, I want to create a new chart with only one graph line. But I want to change the background color in different colors so the user can see when the graph line was in critical values. I'm getting all values (also the critical point values) from a hi