(Quick Reference)

verticalLayout

Purpose

Adds a Vaadin VerticalLayout component to the parent container.

Examples

<v:verticalLayout>
  <v:label>One</v:label>
  <v:label>Two</v:label>
  <v:label>Three</v:label>
</v:verticalLayout>

Description

Body

  • Should contain a list of Vaadin tags only - any HTML is ignored.

Attributes

  • var (optional) Uses Grails's set tag to set the value of the specified variable to be this component.
  • class (optional) The CSS class name to add to the component using the addStyleName() method
  • sizeUndefined (optional) Calls setSizeUndefined() on the component. (Attribute value is ignored)
  • sizeFull (optional) Calls setSizeFull() on the component. (Attribute value is ignored)
  • location (optional) The location slot in the parent container to which this component should be added.
  • wrapperClass, wrapperStyle (optional) Special styling for wrapper <div>.

See Vaadin VerticalLayout API docs for full list of allowed attributes