Announcement

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

    issue with radiogroup item alignment

    I have got a problem in setting the radiogroupitem.
    I 'm working on a migrating project, I need to align the radiobuttons. i want 2 radiobutton horizontally and third one vertically.

    I tried with the below codes;
    radioGroupItem = new RadioGroupItem();
    radioGroupItem.setValueMap(item1,item2,item3);
    radioGroupItem.setShowTitle(false);

    After applying this,all items are vertically aligned. If I could get a good solution i would be happy.

    #2
    You can call RadioGroupItem.setVertical(false) to make them all horizontal.

    I don't think you can have some vertical and some horizontal with in the same RadioGroupItem

    Comment

    Working...
    X