How to influence the APEX 4.0 autocomplete text element drop-down list colors?

Hello

Could some body if you please tell me the model that I need to change?

I use the 15 theme and the text with AutoComplete element has a very different color scheme, I would like to change, so that it would harmonize with the theme 15 colors. It's just that I can't find the model to change. TIA.

Tamás

Tamas

There is no model for the AutoComplete element. His appearance is controlled entirely using CSS. Theme 15 includes a style on the theme of AutoComplete items: she descends to a generic schema that is specified in the apex_4_0.css style sheet:

.ac_results {
  padding: 0;
  border: 1px solid black;
  background-color: white;
  overflow: hidden;
  z-index: 99999;
}
.ac_results ul {
  width: 100%;
  list-style-position: outside;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ac_results li {
  margin: 0;
  padding: 2px 5px;
  cursor: default;
  display: block;
  font: menu;
  font-size: 12px;
  line-height: 16px;
  overflow: hidden;
}
.ac_results li {
  margin: 0;
  padding: 2px 5px;
  cursor: default;
  display: block;
  font: menu;
  font-size: 12px;
  line-height: 16px;
  overflow: hidden;
}
.ac_loading {
  background: white url('indicator.gif') right center no-repeat;
}
.ac_odd {
  background-color: #eee;
}
.ac_over {
  background-color: #0A246A;
  color: white;
}

The best approach would be to use a tool to identify what web Inspector that each of these rules in the context of the use of the AutoComplete element and create your own theme-15-friendly style sheet to override this subset of apex_4_0.css.

Tags: Database

Similar Questions

  • Returns all the duplicate values in object lookup (PHP, drop-down list)

    Hi, I have a PHP page I designed as a search page. I have a number of drop-down lists that get their dynamic values from the fields in a MySQL database.

    At present, if there are any entries that have duplicate values in a certain area, they are all listed, in the order of the index database. For example:

    City:

    Derby

    Stoke

    Stafford

    Stoke

    Derby

    Derby

    Stoke

    etc...

    Now, I want to do is be able to show all results for a given city. In the find what drop-down list box, I would than each of the cities to appear only once rather than every time it is registered. included in this, I would like the page of results to then display ALL results that match this search criteria.

    Thus, in the example above, "Derby" appears only once, but when the user has selected 'Derby', it would return all three results in the results page.

    My results page is built on a dynamic form, so I am confident that the results page would make it according to the needs. However, how can I get the drop-down list box to ask him?

    > 'SELECT DISTINCT table1.champ1, table1.champ2, table1.champ3 FROM Table1 ";

    Duplicate rows to remove the DISTINCT keyword strength SQL. In other words, that it will only return the unique combinations of fields in your selection list. If you examine your results set, you will see that each line is separate, although there may be duplicates in a particular area. Because you want to populate a drop-down list, you must include a field in your select list only, otherwise you get of the dupes.

  • How to enable/disable readonly in text fields, drop-down list field?

    For example, I have a dropdown field named "DropdownField" and a field of text called 'TextField '.

    Within 'DropdownField', I have four choices: Option 1, Option 2, another, combination. When the user first sees the "DropdownField", they see 'Select Option.' When the "DropdownField' select Option, Option 1 or Option 2 selected, I want to 'TextField' to be a read only field. However, what other or combination are selected, I want them to be able to grasp things in the 'TextField', which makes is not readonly. Also, tell someone selects 'Other', but realizes that they have made a mistake, I want them to be able to select Option 1, and have the return of 'TextField' read-only.

    Currently I have the JavaScript code as a MouseUp on "DropdownField: action

    var getField.DropdownField = drop;

    var getField.TextField = text;

    If (drop.value! = 'Other' | drop.value! = 'Combination')

    {text.readonly = false ;}

    on the other

    If(drop.value = 'Other' | drop.value = 'Mix')

    {text.readonly = true ;}

    However, the JavaScript code above doesn't seem to work. Please let me know what I'm doing wrong!

    You must use the event to validate drop-down list and use a script like:

    var f = getField("TextField");
    
    if (event.value === "Other" || event.value === "Combination") {
      f.readonly = false;
    } else {
      f.readonly = true;
      f.value = f.defaultValue;
    }
    

    Also, set the option in the drop-down list "Value Commit selected immediately".

  • Show / hide the text box drop-down list database

    Hi all

    First time post here - wahoo!  :-)  Brand new user of LiveCycle, and so far I'm loving - very cool app!  I am a bit puzzled, however, and hoping someone can help...

    I am using LiveCycle version 8.05 and try to build a form that has a drop-down list with departments in our Organization.  If the user selects the elements 1-5 on my list, I want two other fields at autopopulated (one for the Admin Assistant) and one for Dept Head.  If however the user selects 'Other', I want a text box (it will be hidden the rest of the time) where the person will be able to type in the Department they work for.  For now, I'm only interested on getting the box 'Other' to appear; I'll worry about the other stuff later.

    Elsewhere in my form, I have a functioning drop-down list that displays a text based on the selection field; However, for some reason this logic does not work with the situation described above.

    My code for the working text field is (in JavaScript)

    var
    
    (sNewSel)
    case "1": 
    switch
    {
    
         TextField6.rawValue = "My text is in here";
    break;
    case "2":
    
    
    
    = "My second text is in here ";
    
    
    break;
    "3":
    
    case 
    
    = "My third text is in here.";
    break;
    TextField6.rawValue
    
    default:
    }
    break;
    
    
    TextField6.rawValue 
    
    
    sNewSel = this.boundItem(xfa.event.newText);
    

    After many fruitless hours yesterday, I got only to the extent where the code below; This was more or less copied right out of a post here.  When I click on the drop-down list, select 'Other', the text field is displayed.  I tried the definition of the text field to the times 'Hidden' and 'Visible' through properties of the object, but no luck.  I tried to use IF statements, subforms and anything else I could think of but am getting nowhere.

    var nSubLength = Subform1.nodes.length;
    var 
    sSelectField 
    for
    
    {if
    {switch (xfa.event.newText) 
    (case "6":
    Subform1.nodes.item(nCount).presence
    break
    default:
    Subform1.nodes.item(nCount).presence
    break
    }
    }
    }
    ;
    = "invisible";;= "visible";((Subform1.nodes.item(nCount).className == 
    "field") &(Subform1.nodes.item(nCount).name== sSelectField)) 
    (var nCount = 0; 
    nCount < nSubLength; 
    nCount++) sSelectField = fieldList.rawValue;
    = sSelectField.replace(' ', '');

    Any ideas?  This is very new to me, but I am familiar with other programming languages, and something this simple should not be difficult which leads me to think I'm missing something.

    Thanks in advance

    Chris

    It was easier to create a sample for you... Please see the attachment.  I think that's what you want.

    The code is on the change event of the DDList

    Paul

  • How the downloaded asl Styles if displayed in drop-down list window inside the elements?

    When I download a DSM format STYLE in the my Adobe Elements, it does not appear in the drop-down window for the Layer Styles. What should I do?

    I put it in the presets under Styles. I see others here. Of course, these are them that accompanies the program. Yes, I know this is an old program, but I'm used to working on it and cannot afford a new version at the moment. When I do the same for the brushes, they work, why not not the style?  What I am doing wrong?

    I have the value files not hidden and restarted my computer. Nothing works.

    Any help would be appreciated.

    I think remember having this same issue years ago under windows xp with pse 4.

    Here are a couple of things to try:

    (you probably won't have some of the items below, but that normal)

    (click on the screenshots below for more great views)

    1. go in C:\Users\Your Name\AppData\Roaming\Adobe\Photoshop Elements\4.0\Editor

    and delete the PresetsCache.psp and Styles.psp and then start or restart PES 4 and see if it works.

    2. If still no go in C:\Users\Your Name\AppData\Roaming\Adobe\Photoshop Elements\4.0\Editor

    and delete the Adobe Photoshop éléments 4 Prefs.psp and then restart pse 4.

  • Password when the user choose a value in a drop-down list

    Hello

    I have a problem with a form.

    I have a menu drop-down.

    When users choose 'A', some fields are hidden from other readonly

    When users choose 'B' all sare field visible but readonly.

    I would like to add a password field that allowed persons authorized to edit the form fields all.

    Thank you very much

    Nath

    In your password field, you need to put something like (in Formcalc):

    If ($ == 'whateveryourpasswordis') then

    otherfield1. Access = 'open '.

    otherfield2. Access = 'open' //etc that will make them active user

    endif

  • How to change the color of the text on the user interface control, such as the drop-down list component

    Hi, I want to change the color of the text in drop-down list because I want to set background color.

    How to do this?

    Thank you

    He suggests as a feature on jira. or write a custom, component drop-down list does not support this.

  • get the index of a selected item in a drop-down list box

    Hello

    If I have a list of strings in a drop-down list box and the user selects one in the drop-down menu, how can I get the index?  I was able to explore the table for the selected channel, but it seems like duplication of effort to create a list and then go back and research it.

    Thank you

    Brendon

    It's easier to change control of the ring or Enum which gives the index as a default value, a drop-down list box gives a string that must be converted. But if you like really graphic and you want to use the drop-down list you can uncheck the "use strings as values" option and enter the index as numbers and then make a string to Decimal conversion.

    /Y

  • Width of drop-down list and the number of drop-down list values

    How to increase / decrease the width of a drop-down list on the screen of your interview? In addition, how you increase the number of menu options drop-down user, some of my options in drop-down list don't show up. This shows only 3 points:...

    For OPM 10.4:

    Increase the number of visible items in a drop-down list

    There are two options:

    1. make a regular drop-down list instead of a list of drop-down list box. Regular drop-down lists always display all items, regardless of the length of the list. To do this, set "enable-search-comboboxes = false" in the appearance.properties file. "

    2. increase in the search results max for the combo box in the file appearance.properties, for example 'search max-results = 20' (or another number as appropriate)

    See article OPM the User Guide for more details: http://docs.oracle.com/html/E54499_01/toc.htm#Interviews%20and%20flows/Customize_Web_Determinations.htm#Change4

    I have a vague memory that the increase in the width of the drop-down lists is a bit more tedious. I'll take a look and post here...

    See you soon,.

    Jasmine

  • load the colors drop-down list

    Hello

    How can I get the book of color in the drop-down list color?

    2014-06-22_210048.jpg

    Kind regards

    Frank

    Shift + Select all the colors in the color library you opened and drag-and - drop to the Swatches palette. Or if you want to add only a few colors, and then click the colors one by one, those who would be added to the swatches Panel.

    Kind regards

    Dhirendra

  • More simple way to complete the xml data in a drop-down list

    Hi all

    I have a dept.xml as below.

    <? XML version = "1.0" encoding = "UTF-8"? >
    < departments >
    Department < and > account < / Department >
    < departmentAdmin < / Department >
    Department < and > Security < / Department >
    < / departments >

    Can I know what is the easiest way to fill in the 'account', 'Admin' and 'Security' in a drop down list?  And how?  Can we by befriending pure?  Or has done by the script?

    Thank you all!

    CL

    To embed the XML data in the PDF file, open it in Acrobat and then:

    Forms-> manage form data-> import data.

    And you choose XML file.

    I hope this helps.

    Diego

  • Help with Hidden Drop Down lists in the subforms RBList

    I've created a form that contains 3 remote option button lists, each with hidden subforms that are unique in each button.

    Two of my RBLists and subforms work perfectly, showing the hidden options drop down and other fields as they should when a button is selected.

    However, RBList3 has the lists dropdown as user input fields only. Each subform hidden in RBList3 contains a menu drop down and a text box for instructions.

    I used the same javascript to hide/show the hidden fields when buttons are selected. All the settings seem to be upward. Here is a sample of my code:

    If (RBList3.F.rawValue! = 2)
    {
    This.Presence = 'hidden ';
    newsubform. Presence = "hidden";
    }

    another if (RBList3.F.rawValue == 2)
    {
    This.Presence = "visible";
    newsubform. Presence = "hidden";
    }

    Does anyone have suggestions for how make my Drop-Down lists in RBList3 show that lists functional Drop?

    I have attached the reference form.

    Code not woirk for E, F and G. I check if the user selects G if they do not, then they must chose one of two other options (which means that the rest of the logic is executed). If I understand the question is in the initial state of the EdgeDropDown2 objects.

    PanzDrawTxt, and

    EdgePanelChkBxTxt. If you set the initial value of invisible presence, then you will not need to change any code. You must do this for each object individually. Click on one of the objects and on the object palette click the tab field near the bottom of this tab is a drop-down list to set the initial value of presence. Set it to the invisible. Repeat for the other two objects.

    Paul

  • Selection in the drop-down list box determines the text to display in another box - ideas?

    Hello, my name is Zac.  I spent a lot of time trying to figure this one out for myself, but I couldn't find what I needed.  A few threads looked promising, but I realized that they only apply to the LiveCycle.  Many other threads link to discussion 2006 Thom Parker on this subject, but it is very advanced and I feel that what I need is not as complex as the solution he proposes.  I've never used Adobe Acrobat until a few weeks ago, but with the help of Bernd Alheit and George Johnson I managed to create a document with fly-out help windows and scrolling lists and radio buttons which dictate the choice.  It's great and it works.  The last thing I have to do is to create a text box (or some kind of box) which will display a pre-written block of text based on the user choice in another area (a drop-down list box).  Like this:

    image for forums 2.PNG

    I wish, it is also easy to create because it draw a picture of him!  If the user selects "Algebra 1", for example, a specific description display below.  There are a lot of courses and descriptions, and the descriptions are long enough (as shown).  It is not necessary for the user to make changes to the description - in fact, which would be terrible.  But I would like to be able to copy text from it and paste the text in another area of text on the same page.

    Thank you very much, all those who have ideas please share them! Again wild guesses. I learn from all this.

    -Zac

    This involves using a script. If you want to write the code yourself read this tutorial:

    https://acrobatusers.com/tutorials/change_another_field

    If you don't feel like messing around with the code, you can use this tool that I developed to easily set up with the help of an input file:

    Scripts custom Adobe: Acrobat - fill the drop-down list

  • How to change values from drop-down list in several fields simultaneously

    I have a 50-page form that contains a multitude of areas.  One of the fields from drop-down list is repeated throughout the form.  The values in the drop-down list options must be the same for all fields of form drop-down list.  These fields are not copies.  I need to make them individually selectable with touching other areas.

    The problem is, I often have to update the values in these fields... and there are dozens of them.

    Is there a way to store the list in the document and have all dropdowns access from this central location?

    You can do quite easily with a script. For example:

    var aList is ['Alaska', 'Washington', "Oregon", "Idaho", "Montana"];.

    getField("dropdown1").setItems (aList);

    getField("dropdown2").setItems (aList);

    Add any other dropdowns here

    You can store this code in a JavaScript function at the level of the document and update it and then call it whenever you need to update the drop-down lists. If you need to include the value of exports for the elements, you need to change the table suruneliste to an array of arrays, something like:

    aList var = [['Alaska', 'AK'] ['Washington', 'WA'], ['Oregon', 'GOLD'], ['Idaho', 'ID'], ['Montana', 'MT']];

  • Export the value of the drop-down list of failure

    Hello colleagues!

    I created a simple form using LiveCycle Designer, which consist of two elements of text and drop-down list box:

    The drop-down list is filled with XML data:

    <MyData>
    <country/>
    <countries>
    <item uiname="United States" token="US"/>
    <item uiname="Vietnam" token="SRV"/>
    </countries>
    <state/>
    <US>
    <item>California</item>
    <item>New York</item>
    <item>Texas</item>
    </US>
    <SRV>
    <item>An Giang</item>
    <item>Bac Giang</item>
    <item>Bac Kan</item>
    </SRV>
    </MyData>
    

    Then, I handed the form, received a response and he added in the base file of responses:

    Later, I tried to export the responses, but it freezes. I think that the loop is executed, because I can move the progreess window, I can close the wndow to Adobe Acrobat, but when I try to cancel the export process nothing happens:

    So I discovered that the problem is in the drop-down list populated from XML data and list which is binding against XSD or XML elements.

    I don't know what I should do next.

    Links:

    Simple form. XML data.

    Adobe support confirmed that the problem with dropdown lists bug. Will be fixed in future version.

Maybe you are looking for

  • HP Deskjet 2640 Jet advantage: printing without margins

    I would like to know if it is possible to print borderless with the advantage of Jet HP printer jet 2640 engineering.If possible, I would like to know how to set up the printer for such an impression.Thanks for the help

  • Satellite L600-10B - No. Bluetooth and WLAN control

    Nice day!I bought a Toshiba satellite L600-10B with a friend that computer portable enough used imports from China. The old language of OS (China version) has been removed, now with Windows 7 32-bit English. What I think has caused the following prob

  • How do I change the range on a chart, but save the same points

    Hello I have a chart with 501 points on the axis X and autoscale on there, and then when I generate the graph, I see the x-axis from 0 to 500. But now I need to change the scale for the x-axis of 50 to 100... but all points must be the same as 0 to 5

  • Pirates of Microsoft

    I received a call from someone claiming that it was Microsoft Corporation, informing me that my Microsoft Windows account is not updated. He got access to my computer remotely by using the www.supremocontrol.com Web site.  Also told me I had a bunch

  • black screen and can't seem to windows.

    I always try looking for the answer to this one. It is the last line that appears when I try to start in safe mode. nothing happens and I can't go to the windows form: multi (0) disk (0) rdisk (0) partition (2) \windows\system32\drivers\mount mgr.sys