Example usage for com.vaadin.client.ui VVerticalLayout VVerticalLayout

List of usage examples for com.vaadin.client.ui VVerticalLayout VVerticalLayout

Introduction

In this page you can find the example usage for com.vaadin.client.ui VVerticalLayout VVerticalLayout.

Prototype

public VVerticalLayout() 

Source Link

Document

Default constructor.

Usage

From source file:com.wcs.wcslib.vaadin.widget.filtertablestate.client.FilterTableStateConnector.java

License:Apache License

private void createPopupLayout() {
    overlay = new VOverlay(true, false);
    overlay.setOwner(filterTable);/*from w  w  w.j  ava 2s. c  om*/
    layout = new VVerticalLayout();
    layout.setStyleName(LAYOUT_STYLE);

    initClickFunctions();
    initColumnVisibilities();
    initProfileLayout();
    initProfileSaveFields();

    overlay.add(layout);
}