LayoutRegion
Layout Region
- Demonstration: N/A
- Java API: org.zkoss.zul.LayoutRegion
- JavaScript API: zul.layout.LayoutRegion
Employment/Purpose
The LayoutRegion
class in ZK represents a region within a layout manager. It is used to define specific areas within a layout where components can be placed. These regions can have different behaviors such as collapsing, resizing, and sliding, providing flexibility in designing user interfaces.
Supported Events
Name | Event Type | Description |
---|---|---|
onOpen | Event: OpenEvent | Sent when a layout is collapsed or opened by a user. |
onSize | Event: SizeEvent | Sent when a layout is resized by a user. |
onSlide | Event: SlideEvent | Sent when a collapsed layout is slid (previewed) by a user. |
Supported Children
*ALL
: Represents support for all ZK components. This means that any ZK component can be placed within the LayoutRegion
and will be properly rendered and managed by the layout manager.