I want to display my radio buttons in 1 line, for example:
β Option1 β Option2
However, with Vaadin, I canβt do this, it looks like this:
β Option1
β Option2
here is my code:
final List<String> options = Arrays.asList(new String[] { "hebele", "hubele"}); final OptionGroup group = new OptionGroup("", options); group.setNullSelectionAllowed(false); // user can not 'unselect' group.select("hubele"); // select this by default
How can i change this?
source share