Example usage for com.vaadin.ui VerticalLayout subclass-usage

List of usage examples for com.vaadin.ui VerticalLayout subclass-usage

Introduction

In this page you can find the example usage for com.vaadin.ui VerticalLayout subclass-usage.

Usage

From source file com.klwork.explorer.ui.custom.DetailPanel.java

/**
 * Panel that should be used for main-content. Use {@link #setDetailContainer(ComponentContainer)}
 * and {@link #setFixedButtons(Component)} to add main components. By default, the detailContent will 
 * be a verticallayout which has 100% width and undefined height and margins enabled. Add components
 * to detail container using {@link #addDetailComponent(Component)} etc.
 * 

From source file com.klwork.explorer.ui.custom.UploadComponent.java

/**
 * Component that can be used to upload files using file-select and 
 * HTML5 file dragging. Exposes events to listen to upload start, progress, 
 * finish and cancel.
 * 
 * @author Joram Barrez

From source file com.klwork.explorer.ui.form.FormPropertiesComponent.java

/**
 * A component capable of rendering a form based on form-properties and
 * extracting values filled in into the writable fields.
 * 
 * @author Frederik Heremans
 */

From source file com.klwork.explorer.ui.form.FormPropertiesForm.java

/**
 * Form that renders form-properties and allows posting the filled in value. Performs
 * validation as well. Exposes {@link FormPropertiesEvent}s which allow listening for 
 * submission and cancellation of the form.
 * 
 * @author Frederik Heremans

From source file com.klwork.explorer.ui.mainlayout.MainLayout.java

/**
 * @author Joram Barrez
 * @author Frederik Heremans
 */
public class MainLayout extends VerticalLayout {

From source file com.klwork.explorer.ui.task.TaskRelatedContentComponent.java

/**
 * Component for showing related content of a task. Also allows adding, removing
 * and opening related content.
 * 
 * @author Frederik Heremans
 * @author Joram Barrez

From source file com.klwork.flow.act.MyTaskRelatedContentComponent.java

/**
 * Component for showing related content of a task. Also allows adding, removing
 * and opening related content.
 * 
 * @author Frederik Heremans
 * @author Joram Barrez

From source file com.kpg.diary.ui.NativeSelects.java

@Component("nativeSelects")
public class NativeSelects extends VerticalLayout implements View {
    public NativeSelects() {
        setMargin(true);

        Label h1 = new Label("Selects");

From source file com.liferay.mail.vaadin.MessageView.java

/**
 * @author Henri Sara
 */
public class MessageView extends VerticalLayout implements ClickListener {

    private static Log _log = LogFactoryUtil.getLog(MessageView.class);

From source file com.liferay.mail.vaadin.PreferencesView.java

/**
 * @author Henri Sara
 */
public class PreferencesView extends VerticalLayout {

    private final class SaveAccountListener implements AccountEditorListener {