Does anyone know if it is possible to create a layout panel that behaves like a dock layout panel, but allows the outer panels to size to their "natural" sizes?
What I'm trying to accomplish is a panel with a north and a center. I want the North panel to size to the natural height of its contents, and the center to take up the remaining space. The top panel can change in size, and I would like the bottom panel to automatically resize when that happens.
Is there a panel that can do something like "Given two widgets, lay the first one out, and then give all remaining space to the second" ? Kind of an auto-adjusting SplitLayoutPanel.
My other thought was to use a standard DockLayoutPanel or LayoutPanel, but somehow attach a listener to the scrollHeight property of the north's FlowPanel that triggers a resize of the north layer.
Does anyone know if there is a way to register for an event that a FlowPanel's content's height has changed?
Thanks,
Eric