DojoBorderContainer

The DojoBorderContainer widget creates a container partitioned into up to five regions: left, right, top, bottom, and center.

Properties

borders
A Boolean value that indicates whether the borders should be visible. A border line can be drawn around the container and each region (similar to table row and column borders).

Examples

BorderContainer DojoBorderContainer{ layoutData = new GridLayoutData{ row = 2, column = 2 },
	width = 600, height = 400, borders = false,
	children = [
		new DojoContentPane { region = DojoLib.REGION_CENTER, children = [ Button, TextArea, TextField ] },
		new DojoContentPane { region = DojoLib.REGION_LEFT, children = [
		]},
		TextField, new DojoContentPane { region = DojoLib.REGION_RIGHT, children = [
		] },
		new DojoContentPane { region = DojoLib.REGION_TOP, children = [
		]},
		new DojoContentPane { region = DojoLib.REGION_BOTTOM, children = [
		]}
	]
};

Feedback