Problem with JComboBox in a fixed JToolBar

Hi,
I've created a JComboBox in a JToolBar that contains all available fonts. When I click on the drop down arrow I only see the first font and a small part of the second. The JComboBox is dropped down in fact just as far as the border of the JToolbar. All the rest isn't visible to me; it seems that they are behind the other components of my JApplet. However, if I move the JToolBar from it's position (as it's a floatable component), there's no problem at all. So I'm wondering why I can't see everything when the JToolBar is docked.... Can anyone help me?
Thanks in advance!!
E_J

it seems that they are behind the other components of my JApplet.Sounds like you are mixing AWT components with your Swing application. Make sure you are using JPanel, JButton ... and not Panel, Button....

Similar Messages

  • FocusListener problem with JComboBox

    Hi,
    I am facing a problem with JComboBox. When I make it as Editable it is not Listening to the FocucListener Event....
    Please tell me if there is any way to overcome this..
    Regards,
    Chandan Sharma

    I searched the forum using "jcombobox focuslistener editable" and quess what, the first posting I read had the solution.
    Search the forum before posting questions.

  • Strange problem with JComboBox

    I am having a strange problem with JComboBox, I created a method as a JComboBox factory which returns a JComboBox filled with items. the method works fine and I can see the items in the JComboBox. The problem is when I try using the method myCombo.SelectedItem(String item); the object myCombo does not set the selected item, it just leaves the item blank (or unselected).
    //This method build a JComboBox
    public javax.swing.JComboBox makeJComboBox(String[] items) {
    javax.swing.JComboBox myComboBox = new javax.swing.JComboBox();
    for (int index=0;index<items.length;index++){
    myComboBox.addItem(makeObj(items[index]));
    return myComboBox;
    public Object makeObj(final String item) {
    return new Object() {
    public String toString() {
    return item;
    }

    Couple of better ways to populate a combo with items-
    public javax.swing.JComboBox makeJComboBox(String[]items) {
    javax.swing.ComboBoxModel cbModel = new DefaultComboBoxModel(items);
    javax.swing.JComboBox myComboBox = new javax.swing.JComboBox(cbModel);
    return myComboBox;
    }OR
    public javax.swing.JComboBox makeJComboBox(String[]items) {
    return new javax.swing.JComboBox(items);

  • Problem with JComboBox in aTable Cell

    I try to put JComboBox in JTableCell,
    what i want to do is something like this...
    Question | Answer |
    1. what is your favourite | a. Pizza |
    food? | b. Hot Dog |
    2. what is your favourite | a. red |
    color? | b. blue |
    Object[][] data = {
    {"1.What is your favourite food?", new AnswerChoices(new String[]{"a.Pizza","b.Hot Dog"})},
    {"2.What is your favourite color?", new AnswerChoices(new String[]{"a.red","b.blue"})}
    here my code;
    //class AnswerChoicesCellEditor
    import javax.swing.table.*;
    import javax.swing.*;
    import java.awt.Component;
    import java.awt.event.MouseEvent;
    import java.util.EventObject;
    import de.falcom.table.*;
    public class AnswerChoicesCellEditor extends AbstractCellEditor implements TableCellEditor{
         protected JComboBox mComboBox;
    public AnswerChoicesCellEditor(){
         mComboBox = new JComboBox();
         mComboBox.addActionListener(this);
         mComboBox.setEditable(false);
    public Component getTableCellEditorComponent(JTable table,Object value,boolean isSelected,int row,int column){
         if(value instanceof AnswerChoices){
              AnswerChoices a = (AnswerChoices)value;
              String[] c = a.getChoices();
              mComboBox.removeAllItems();
              for(int i=0; i < c.length; i++)
                   mComboBox.addItem(c);
                   mComboBox.setSelectedIndex(a.getAnswer());
         return mComboBox;
    public Object getCellEditorValue(){
         int nchoices = mComboBox.getItemCount();
         String[] c = new String[nchoices];
         for(int i = 0; i<nchoices; i++){
              c[i] = mComboBox.getItemAt(i).toString();
         return new AnswerChoices(c,mComboBox.getSelectedIndex());
         //return mComboBox.getSelectedItem(); //here i get but after selection there is no comboBox in tableCell
    //the Renderer class
    import javax.swing.table.TableCellRenderer;
    import javax.swing.*;
    import java.awt.Component;
    public class AnswerChoicesCellRenderer extends JComboBox implements TableCellRenderer {
         private Object curValue;
    /** Creates new AnswerChoiceCellRenderer */
    public AnswerChoicesCellRenderer() {
    setEditable(false);
    public Component getTableCellRendererComponent(JTable table,Object value,boolean isSelected,boolean hasFocus,int row,int column) {
    if (value instanceof AnswerChoices) {
    AnswerChoices nl = (AnswerChoices)value;
    String[] tList = nl.getChoices();
    if (tList != null) {
    removeAllItems();
    for (int i=0; i<tList.length; i++)
    addItem(tList[i]);
         setSelectedIndex(AnswerChoices.getAnswer());
         //this.setSelectedItem();
    //return this;
    //this.getTableCellRendererComponent(table,value,isSelected,hasFocus,row,column);
    if (table != null)
    if (table.isCellEditable(row, column))
    setForeground(CellRendererConstants.EDITABLE_COLOR);
    else
    setForeground(CellRendererConstants.UNEDITABLE_COLOR);
              setBackground(table.getBackground());
    return this;
    public class AnswerChoices {
         static int ans = 0;
         String[] choices ;
    public AnswerChoices(String[]c,int a){
              choices = c;
              ans          = a;
    public AnswerChoices(String[] c){
              this(c,0);
    public String[] getChoices(){
         return choices;
    public void setAnswer(int a){
         ans = a;
    public static int getAnswer(){
         return ans;
    //the TableModel i used in my app
    import java.awt.Color;
    import javax.swing.JTable;
    import javax.swing.ListSelectionModel;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableCellEditor;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    import javax.swing.table.TableModel;
    import javax.swing.*;
    public class FAL_Table extends JTable {
    /** Creates new FAL_Table */
    public FAL_Table(DefaultTableModel dtm) {
    super(dtm);
    setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    setRowSelectionAllowed(false);
    setColumnSelectionAllowed(false);
    setBackground(java.awt.Color.white);
    setDefaultCellEditorRenderer();
    private void setDefaultCellEditorRenderer(Class forClass, TableCellEditor editor, TableCellRenderer renderer) {
         setDefaultEditor(forClass, editor);
         setDefaultRenderer(forClass, renderer);
         private void setDefaultCellEditorRenderer() {
              // Setting default editor&renderer of Boolean
              setDefaultCellEditorRenderer(Boolean.class, new BooleanCellEditor(), new BooleanCellRenderer());
              //Setting default editor&renderer of ComboBox
              setDefaultCellEditorRenderer(JComboBox.class, new ComboBoxCellEditor( ),new ComboBoxRenderer());
              // Number class
              // Setting default editor&renderer of java.math.BigDecimal
              setDefaultCellEditorRenderer(java.math.BigDecimal.class,new NumberCellEditor(), new NumberCellRenderer());
              // Setting default editor&renderer of java.math.BigInteger
              setDefaultCellEditorRenderer(java.math.BigInteger.class,new NumberCellEditor(), new NumberCellRenderer());
              // Setting default editor&renderer of java.lang.Byte
              setDefaultCellEditorRenderer(Byte.class,new NumberCellEditor(), new NumberCellRenderer());
              // Setting default editor&renderer of Double
              setDefaultCellEditorRenderer(Double.class,new NumberCellEditor(), new NumberCellRenderer());
              // Setting default editor&renderer of Float
              setDefaultCellEditorRenderer(Float.class,new NumberCellEditor(), new NumberCellRenderer());
              // Setting default editor&renderer of Integer
              setDefaultCellEditorRenderer(Integer.class,new NumberCellEditor(), new NumberCellRenderer());
              // Setting default editor&renderer of Long
              setDefaultCellEditorRenderer(Long.class,new NumberCellEditor(), new NumberCellRenderer());
              // Setting default editor&renderer of Short
              setDefaultCellEditorRenderer(Short.class,new NumberCellEditor(), new NumberCellRenderer());
              // Setting default editor&renderer of String
              setDefaultCellEditorRenderer(String.class,new StringCellEditor(), new StringCellRenderer());
              // Setting default editor&renderer of FileName
              setDefaultCellEditorRenderer(FileName.class,new FileNameCellEditor(), new FileNameCellRenderer());
              // Setting default editor&renderer of Color
              setDefaultCellEditorRenderer(Color.class,new ColorCellEditor(), new ColorCellRenderer());
              setDefaultCellEditorRenderer(AnswerChoices.class, new AnswerChoicesCellEditor(), new AnswerChoicesCellRenderer());
              setDefaultCellEditorRenderer(JSpinner.class, new SpinnerCellEditor(), new SpinnerRenderer());
    public Class getCellClass(int row,int col) {
    TableModel model = getModel();
    if (model instanceof FAL_TableModel) {
    FAL_TableModel ptm = (FAL_TableModel)model;
    return ptm.getCellClass(row,convertColumnIndexToModel(col));
    return model.getColumnClass(convertColumnIndexToModel(col));
    public TableCellRenderer getCellRenderer(int row, int column) {
    TableColumn tableColumn = getColumnModel().getColumn(column);
    TableCellRenderer renderer = tableColumn.getCellRenderer();
    if (renderer == null) {
    renderer = getDefaultRenderer(getCellClass(row,column));
    return renderer;
    public TableCellEditor getCellEditor(int row, int column) {
    TableColumn tableColumn = getColumnModel().getColumn(column);
    TableCellEditor editor = tableColumn.getCellEditor();
    if (editor == null) {
    editor = getDefaultEditor(getCellClass(row,column));
    return editor;
    import javax.swing.table.*;
    import java.util.Vector;
    import java.awt.event.MouseEvent;
    import java.util.EventObject;
    public class FAL_TableModel extends DefaultTableModel implements TableModel {
    public FAL_TableModel() {
    this((Vector)null, 0);
    public FAL_TableModel(int numRows, int numColumns) {
    super(numRows,numColumns);
    public FAL_TableModel(Vector columnNames, int numRows) {
    super(columnNames,numRows);
    public FAL_TableModel(Object[] columnNames, int numRows) {
    super(convertToVector(columnNames), numRows);
    public FAL_TableModel(Vector data, Vector columnNames) {
    setDataVector(data, columnNames);
    public FAL_TableModel(Object[][] data, Object[] columnNames) {
    setDataVector(data, columnNames);
         public boolean isCellEditable(int row, int col) {
    //Note that the data/cell address is constant,
    //no matter where the cell appears onscreen.
    Object obj = getValueAt(row,col);
    if (col != 1){
    return false;
         }else{
              return true;
    public Class getCellClass(int row,int col) {
    Object obj = getValueAt(row,col);
    if (obj != null)
         return obj.getClass();
         else
         return Object.class;
    public Object getCellValue(int row,int col) {
    Object obj = getValueAt(row,col);
              return obj;      
    my problem is, when i select an item from one of the comboBox in the table the value of the other cells changes too and i have the same problem with JSpinner.
    please help i am stuck
    Gebi

    and when i try to get the current value oa a cell it returns the Component class like this
    AnswerChoices@bf1f20 ...

  • Are the problems with Compressor's encoding fixed yet?

    Sorry for the slightly vague title but I only use compressor once a year basically, which is after the production of a Christmas show I produce. Last year I upgraded ot Final Cut Studio to do the DVD and got caught out. I encoded using what I thought was the best setting (2 pass variable bit rate) and got jittery encoding. After investigating on this very forum, I found lots of comments about known problems with Compressor's encoding in this setting and ended up re encoding using one pass which was "ok".
    I'd rather do the best job I can so the basic question is, "is it fixed yet". Keeping in mind I understand about altering settings so that I can get the time I need onto one disc (110 minutes unfortunately!) What setting will offer me the best possible picture quality, regardless of encoding time, with compressor? Many, many thaks for any advice you regular user can offer!!
    Happy Christmas in advance, Gareth

    Gareth:
    According what was posted in this thread:
    http://discussions.apple.com/thread.jspa?threadID=760041&tstart=15
    by Brian a lot of problems must be solved using the last 2.3 version.
    Hope it helps !
      Alberto

  • Lots of problems with E6 - must be fixed soon (e.g...

    I have used Nokia mobiles since 1999 and recently "upgraded" from an E71 to an E6.  I have found far too many problems with the E6 and would like Nokia to explain what they are doing to fix these issues.
    The E6 needs to have the @ symbol in the notifications area at the top of the screen when a new email arrives (like in the E71). It is really shocking that this feature is currently missing - especially as the E6 is supposed to be the upgrade route for E71 / E72 users.
    The notification light in the 5-way button is currently useless because it is far too dim to see except in very dark conditions. The light must be turned up much brighter AND it needs to include the option of notifying when emails arrive.
    Vibrate is too weak. This needs to be stronger (I believe a firmware update can fix this easily).
    Lots of apps in OVI are not yet updated for the higher pixel density E6 screen compared to the E71, so lots of detail and buttons are far too small to use, especially in maps (where the text shrinks too small straight after enlarging a map). 
    Eg:
    - Facebook app (based on the former Snaptu app), works fine but everything is tiny.
    - Online maps in ViewRanger (the pre-downloaded OS sheets are fine as they can be enlarged without the text shrinking again).
    - Most weather apps
    Also, the browser shows web pages adjusted for mobile phones far too small. try looking at the Daily Telegraph webpage - it automatically goes into the mobile site and all text is so microscopically small that it is unreadable (the current solution is to use Opera Mini).
    I want the widget that existed in the E71 for email notifications (it shows up a popup with the latest emails) back.
    I want the function that tells you how long a call was (like E71) straight after the call.
    I want the camera app to be available as a shortcut on the one-touch keys - as this would be the only way to have a physical key for firing up the app. Currently, one needs to find an on-screen icon, which can be a fiddle unless you have the icon on every homescreen.
    A better choice of Themes needs to be pre-installed.
    I almost feel like ditching my E6 and going back to my E71 because it actually did everything I needed.

    I had E6, Im using past 1 years, now only its hanging,My warranty time also finished.
    russellhawker wrote:
    I have used Nokia mobiles since 1999 and recently "upgraded" from an E71 to an E6.  I have found far too many problems with the E6 and would like Nokia to explain what they are doing to fix these issues.
    The E6 needs to have the @ symbol in the notifications area at the top of the screen when a new email arrives (like in the E71). It is really shocking that this feature is currently missing - especially as the E6 is supposed to be the upgrade route for E71 / E72 users.
    The notification light in the 5-way button is currently useless because it is far too dim to see except in very dark conditions. The light must be turned up much brighter AND it needs to include the option of notifying when emails arrive.
    Vibrate is too weak. This needs to be stronger (I believe a firmware update can fix this easily).
    Lots of apps in OVI are not yet updated for the higher pixel density E6 screen compared to the E71, so lots of detail and buttons are far too small to use, especially in maps (where the text shrinks too small straight after enlarging a map). 
    Eg:
    - Facebook app (based on the former Snaptu app), works fine but everything is tiny.
    - Online maps in ViewRanger (the pre-downloaded OS sheets are fine as they can be enlarged without the text shrinking again).
    - Most weather apps
    Also, the browser shows web pages adjusted for mobile phones far too small. try looking at the Daily Telegraph webpage - it automatically goes into the mobile site and all text is so microscopically small that it is unreadable (the current solution is to use Opera Mini).
    I want the widget that existed in the E71 for email notifications (it shows up a popup with the latest emails) back.
    I want the function that tells you how long a call was (like E71) straight after the call.
    I want the camera app to be available as a shortcut on the one-touch keys - as this would be the only way to have a physical key for firing up the app. Currently, one needs to find an on-screen icon, which can be a fiddle unless you have the icon on every homescreen.
    A better choice of Themes needs to be pre-installed.
    I almost feel like ditching my E6 and going back to my E71 because it actually did everything I needed.
    I dono what can I do, Always hanging and automatically restarting.
    Please help me in this concern.

  • CopyRights problem with "expires at the fixed time" uat mode

    Dear all
    I found a problem with rights parameter
    When I use rights parameter in uat mode or umt mode
    it can't be work with this two modes($uat and $umt)
    and I found a document in adobe jp
    the document says "only uat mode works well with expire function"
    so I change the rgihts to uat
    but it still has problem and does not work
    this is part of my ASP VBS code
    startTime=DateDiff ("s","1-Jan-1970",Date())
    endTime=DateDiff ("s","1-Jan-1970",DateAdd("n" , 1 , Now()))
    strQueryParams = oGBLink.AppendToQuery("bookid", pSku, strQueryParams)
    strQueryParams = oGBLink.AppendToQuery("rights", "$uat#"&endTime&"#"&startTime&"$", strQueryParams)
    strQueryParams = oGBLink.AppendToQuery("price", CStr(pPrice), strQueryParams)
    ....and more
    is there any problem with my code??

    I don't see a problem with your code. You might put in a print statement and make sure that strQueryParams contains what you're expecting.
    When you're testing, are you using the same book more than once? If so, ACS can get confused about which voucher to use and use an old one.
    - either use a different book each time
    - or after each test, reset Acrobat or Reader on your test download machine. Adobe has a KB article:
    http://support.adobe.com/devsup/devsup.nsf/docs/53857.htm

  • Many Trash problems with leopard and no fix

    Hi
    I posted that my trash is not emptying under any circumstances no one seemed to know how to solve this. i noticed that there are several people with trash issues (some not emptying until restart, others cant see the trash) i just hope that apple fix this with an update or something. meanwhile i am using a program called onyx to empty my trash and it works fine.

    I am not an expert on this but i had a problem similar to what you experienced. I deleted tens of thousands of stuff at one go and it got stuck at one point. But the difference between your experience and mine is that it gave a dialog saying it cant find the file xxx to delete and also that i should click continue to proceed further. needless to say, i had to do that twenty to thirty times with each tiem a dialog popping up with same message but different file. when done, it seems to have deleted all other files except the ones it showed in dialog box. So i opened trash again and option clicked it and everything went away without any dialogs. hope that helps.
    I dont know if that applies to secure emptying the trash.

  • Problem with RSCRM_BAPI (extraction to Fixed Lenght txt file)

    Hi Experts,
    I have a question about a RSCRM_BAPI limitation:
    I want to extract a Query, using this transaction, to a fixed lenght .txt file. The query has a tabular structure like this:
    CHARACT1 | CHARACT2 | CHARACT3 | CHARACT4 | KEYFIG_MONTH1 | KEYFIG_MONTH2 | .... | KEYFIG_MONTH12.
    so i have a tabular structure with some CH and a KF repeated for the 12 month of the year.
    The problem is that the fixed lenght .txt file extracted with RSCRM_BAPI stops to the month 11, month 12 is discarded. If i try to extract a .csv file with the same query all the 12 month are included in the file.
    Question: Is it possible that RSCRM_BAPI has a row lenght limitation considering the fixed lenght .txt file?
    Many thanks in advance.
    Fabio

    How did you sechudle the Query/Report Using BAPI, i'm having similar Problem. Please Can you help me out.
    My problem is , i have a query which is schedule for every month 2 wed and a bapi is associated to The query.
    for some reason's the query is not working properly .
    Can you please help.

  • Event problem with JComboBox

    Hi, javamen.
    I ve gotten a little problem when working with Itemlistener interface. My combo has 4 options, in which the first one always appears when the applet starts up. Whenever the user DOESNT change it and submit the applet form, throught a button click, the applet gets a NullPointerException. But, if the user changes the option, i always get it, throught my interface' methods(ItemStateChanged). Of course, i know its because there was no combobox event, just a button event (click). So, how can i deal with this situation, since i need to get the combobox option content.
    Regards, Euclides.

    But, this is the question! I dont know how to initialize the combobox' first option. Help me, please! I am using the addItem method as follow:
    MakeJCombo ( JComboBox ComboObj) {
    ComboObj.addItem ("option1");
    ComboObj.addItem ("option2");
    ComboObj.addItem ("option3");
    then:
    public void itemStateChange(ItemEvent ie) ...
    Object origem = ie.getSource()...
    if (origem == ComboObj) ...

  • Problem with JComboBox in a JPanel

    I have a JComboBox in a JPanel (with a gridbaglayout), and I add items to the combobox:
    String[] stateList={"AL",.....};
    JCombobox stateCB=new JComboBox(stateList);
    and when I run the application, the states appear in the box, but when I click on the box, there is no drop-down list!
    any ideas?

    Is the combobox Enabled if it is then after adding it to anything set it to true cause i poersonally tried out as u have given it it works and else if it does not show a list then use the setmodel function and set the model to DefaultComboBoxModel and then add the items using a for loop

  • Problem with JComboBox in j2sdk 1.4.2_01

    Hi,
    I've got a JComboBox, and I want to change its background color. I use this code:
    BasicComboBoxEditor editor = (BasicComboBoxEditor)myJComboBox.getEditor();
    editor.getEditorComponent().setBackground(SystemColor.control);
    This code works with versions 1.3.1 and 1.4.1, but with version 1.4.2_01 it doesn't.
    Can anyone tell me another way to change the background color??
    Thanx in advance.

    Hi,
    I've got a JComboBox, and I want to change its background color. I use this code:
    BasicComboBoxEditor editor = (BasicComboBoxEditor)myJComboBox.getEditor();
    editor.getEditorComponent().setBackground(SystemColor.control);
    This code works with versions 1.3.1 and 1.4.1, but with version 1.4.2_01 it doesn't.
    Can anyone tell me another way to change the background color??
    Thanx in advance.

  • Why can't my 5S find my bluetooth devices when I had no problem with 4S? any fix?

    Brand new 5S not finding any of my Bluetooth devices. Never had an issue with my 4S. Any sugestions on how to fix without buying new devices?

    Brand new 5S not finding any of my Bluetooth devices. Never had an issue with my 4S. Any sugestions on how to fix without buying new devices?

  • Problems with Mass Changes of  fixed assets (Transaction AR31)

    Hello all,
    I have the next problem: I am trying to make a massive update of fixed assets , by means of the transaction ar31, but the system goes directly  to the transaction so01 .
    That I must do for being able to execute the transaction of normal way?
    Thanks.

    I think the same, but I don't understand :
    <i>for a simple change better use BDC to tcode AS02.
    -> you can use transaction-recorder SHDB</i>
    I was investigating and I managed to deactivate wf,  now I can execute the transaction, but not successful. The system show the next message " They do not exist responsible for task " and when checking the customizing the fixed assets (OAWF) the task have a responsible.
    So I do not know that to do.
    I hope you can help me

  • The problem with JComboBox

    hi,
    i have a JComboBox that has 3 items, when user choose one of them,
    how can i get it as a string to store into database.
    thanks a lot..

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class test extends JFrame implements ItemListener {
      JComboBox comboBox;
      public test() {
        super("JComboBox");
        String[] comboBoxItems = {
          "one", "two", "three"
        comboBox = new JComboBox(comboBoxItems);
        comboBox.addItemListener(this);
        JPanel panel = new JPanel();
        panel.add(new JLabel("select one"));
        panel.add(comboBox);
        getContentPane().add(panel, BorderLayout.CENTER);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(200,100);
        setLocationRelativeTo(null);
        setVisible(true);
      public void itemStateChanged(ItemEvent e) {
        if(e.getStateChange() == ItemEvent.SELECTED) {
          String selection = (String)e.getItem();
          System.out.println("selection = " + selection);
      public static void main(String[] args) {
        new test();
    }

Maybe you are looking for

  • I added 3G iPad & keeping wifi only-how do I sync both on same iTunes acct?

    I've had my wifi iPad for months and love it, but travel a lot so I bought the 3G version. I'm keeping my wifi iPad for the fam, at least until I sell it. When I connect the new iPad to the computer, it recognizes it as new and asks if I want to sync

  • YouTube Feature Not Working After Installing Patch

    The YouTube feature won't work even after installing the latest patch.  I have also found that the Jeopardy and Millionaire widgets are very touchy and crash easily.  There is nothing on this blog that offers any help in how to get this working.  Ado

  • My ipod got very low battery and now won't connect with itunes?

    My ipod got an extremely low battery and now it won't connect to itunes or charge when connected with the usb. I had not trouble connecting before this

  • Good backup strategy for a mailserver?

    Hi, What would be a good backup strategy for a mailserver and what software would you use. I've got Retrospect right now ... Thanks a lot. Jerome

  • Htmlb:dropdownListBox always on top?

    Hi, I want to add some ajax functionallity to my bsp. To implement a pop-up search box I added a hidden DIV which can be displayed on demand. The problem is that underlying dropdownlistboxes are always shown on top. Even on top of my DIV. I already p