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

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

Introduction

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

Prototype

public VOverlay(boolean autoHide, boolean modal) 

Source Link

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  ww  w.j  a  v a  2  s  . c om
    layout = new VVerticalLayout();
    layout.setStyleName(LAYOUT_STYLE);

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

    overlay.add(layout);
}