Package com.vaadin.client
Interface ContainerResizedListener
-
@Deprecated public interface ContainerResizedListener
Deprecated.As of 7.0, serves no purpose. UseLayoutManagerand its methods instead.ContainerResizedListener interface is useful for Widgets that support relative sizes and who need some additional sizing logic.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidiLayout()Deprecated.As of 7.0, this method is never called by the framework.
-
-
-
Method Detail
-
iLayout
@Deprecated void iLayout()
Deprecated.As of 7.0, this method is never called by the framework.This function is run when container box has been resized. Object implementing ContainerResizedListener is responsible to call the same function on its ancestors that implement NeedsLayout in case their container has resized. runAnchestorsLayout(HasWidgets parent) function from Util class may be a good helper for this.
-
-