Example usage for com.vaadin.server Sizeable setHeight

List of usage examples for com.vaadin.server Sizeable setHeight

Introduction

In this page you can find the example usage for com.vaadin.server Sizeable setHeight.

Prototype

public void setHeight(String height);

Source Link

Document

Sets the height of the component using String presentation.

Usage

From source file:org.lunifera.runtime.web.vaadin.databinding.component.internal.SizeableHeightProperty.java

License:Open Source License

protected void doSetValue(Object source, Object value) {
    Sizeable component = (Sizeable) source;
    component.setHeight((String) value);
}

From source file:uk.q3c.krail.core.option.DefaultOptionPopup.java

License:Apache License

private void calculateWindowSize(Sizeable window) {
    window.setSizeUndefined();
    window.setHeight("600px");
}