Announcement

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

    ComboBoxItem label laid out incorrectly

    What property should I set to make a comboboxitems lable not do a new line?

    For example see the attatchement.

    Code:
    ComboBoxItem cbi = new ComboBoxItem("logType","Log Type");
    
    DynamicForm df = new DynamicForm();
            df.setNumCols(4);
            df.setWidth("50%");
            df.setCellPadding(25);
            df.setColWidths("*","*");
            return df;
    Attached Files
    Last edited by ls3674; 14 Dec 2011, 23:51.

    #2
    wrapTitle:false on the item, or wrapItemTitles:false on the whole form.

    Comment


      #3
      Yes that did the trick

      Comment

      Working...
      X