Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ComboBoxItem Graphical Bug

    Hi all,

    I would like to report something I presume as a bug.

    Here is the sample code

    Code:
    ComboBoxItem cbItem = new ComboBoxItem();
    cbItem.setTitle("Select");
    cbItem.setHint("<nobr>A simple combobox</nobr>");
    cbItem.setType("comboBox");
    cbItem.setValueMap("Cat");
    
    DynamicForm form = new DynamicForm();
    form.setFields(cbItem);
    
    form.show();
    I've have attached the print screens, where we can see that the combobox have some trouble when containing just one value. I need to click three time in the combobox to have the "expected" view.

    Using :
    - GWT 2.2
    - SmartGWT 2.4
    - Firefox 4
    - Windows XP

    I had identify this problem too on SmartGWT 2.1 & GWT 1.6
    Attached Files
    Last edited by jmichelgarcia; 23 Jun 2011, 00:39.

    #2
    See FAQ - you have external CSS.

    Comment


      #3
      Thank you Isomorphic.

      I don't have any external css. I just missed some configs in my module.gwt.xml

      My bad, sorry for the inconvenience.

      Comment


        #4
        Right - what those .gwt.xml entries do is introduce CSS which cause this effect.

        Comment


          #5
          Hi Iso, last thing.
          is it normal that under my war directory i got the standart.css file (under gwt/standart folder) ?

          Does this mean that i've included the standart gwt theme somewhere ? or its a kind of dependency (Im using enterprise theme, include in the smartgwt.jar) ?

          Thanks for your help

          Comment


            #6
            Sounds like an artifact left behind by the <inherits> tag you have already removed. As long as it's not loaded by your application, it's not a problem.

            Comment


              #7
              Solved. i had some old jar into my war directory.
              Thank your for everything.
              Last edited by jmichelgarcia; 23 Jun 2011, 00:38.

              Comment

              Working...
              X