Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

TUTORIALVaadin lets you build secure, UX-first PWAs entirely in Java.
Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Calling javascript synchronously by Enver Haase, 2 weeks ago
GroupBox control
Hello,
We will design web forms with Vaadin. I have attached a design sample.
What is your suggestion about proper control for something like groupbox?
Thanks.
Last updated on Mar, 9th 2012
The Form component uses the HTML <fieldset> element, which has a border like you have in your screenshot. For example, if you do myform.addStyleName("bordered") and:
.v-form-bordered > fieldset {
border: thin solid;
padding: 5px;
}
Then it looks like this.
Notice that you can also use Form as a regular layout component to get that sort of grouping.
Last updated on Mar, 9th 2012
You cannot reply to this thread.