Example usage for com.vaadin.client Util notifyParentOfSizeChange

List of usage examples for com.vaadin.client Util notifyParentOfSizeChange

Introduction

In this page you can find the example usage for com.vaadin.client Util notifyParentOfSizeChange.

Prototype

@Deprecated
public static void notifyParentOfSizeChange(Widget widget, boolean lazy) 

Source Link

Document

This helper method can be called if components size have been changed outside rendering phase.

Usage

From source file:annis.gui.widgets.gwt.client.ui.VVideoPlayer.java

License:Apache License

private void updateSizeFromMetadata(int width, int height) {
    getMedia().getStyle().setWidth(width, Style.Unit.PX);
    getMedia().getStyle().setHeight(height, Style.Unit.PX);
    Util.notifyParentOfSizeChange(this, true);
}