Steve3
(Steve Pech)
October 5, 2010, 5:00pm
1
Hi!
I am kind of hanging currently at a little layoutproblem.
I managed to change the orientation of an optiongroup from vertical to horizontal, but I also want to have the captions of each radiobutton on top of it and not on the right.
Is that possible?
Thanks in advance,
Steve
Lawal
(Lawal Olufowobi)
October 6, 2010, 3:09pm
2
I am also interested in how to achieve this.
But can you tell me how you achieve the radioButtons (option group ) to be horizontally Aligned.
I used this as suggested at the forum http://vaadin.com/forum/-/message_boards/message/181980
.v-select-optiongroup-mystylename .v-select-option {
display: inline-block;
}
But it doesn’t seem to work on firefox,chrome. But it works on opera.
Steve3
(Steve Pech)
October 8, 2010, 2:54pm
3
If you add a float:left; it should work.
But there is still the quastion with the labels on top remaining
Jouni1
(Jouni Koivuviita)
October 9, 2010, 5:18pm
4
Here’s how:
.v-select-option label {
display: block;
}
Steve3
(Steve Pech)
October 17, 2010, 12:58pm
5
Cool thing, thank you very much.