Announcement

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

    Arranging form items horizontally

    I am using smartGWT 2.5.

    I have 3 checkboxes that I want aligned horizontally on my form. When I add them they are placed vertically. I tried doing it using a VLayout, but cannot add the checkboxes to the Layout, then the Layout to the form.

    Thanks

    #2
    maybe try setNumCols(3)

    if your checkboxes have labels, these count as a column.

    Comment


      #3
      Hi,
      So you probably need to put a canvasItem in your dynamicform.
      After that you fill your canvasitem with what you like, so a hLayout etc.
      If you can use RadioButton RadioButtonGroupItem can be set to horizontal by setVertical(false);

      Regards
      Alain

      Comment

      Working...
      X