aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dijit/tests/layout/test_BorderContainer_nested.html
blob: 72bdf53da9141e35f99ab7005749b25883c3225f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
	<title>dijit.layout.BorderContainer Test</title>

	<style type="text/css">
		@import "../../../dojo/resources/dojo.css";
		@import "../css/dijitTests.css";
	</style>

	<script type="text/javascript" src="../../../dojo/dojo.js"
		djConfig="isDebug: true, parseOnLoad: true"></script>
	<script type="text/javascript" src="../_testCommon.js"></script>

	<script type="text/javascript">
		dojo.require("dijit.layout.BorderContainer");
		dojo.require("dijit.layout.ContentPane");
		dojo.require("dijit.form.FilteringSelect");
	</script>
</head>
<body>
	
	<h2 class="testTitle">dijit.layout.BorderContainer tests</h2>
	<p>Basic layout</p>

	<div dojoType="dijit.layout.BorderContainer"
		style="border: 2px solid black; width: 90%; height: 500px; padding: 10px;">
		<div dojoType="dijit.layout.ContentPane" region="left" style="background-color: #acb386; width: 100px;">
			left
		</div>
		<div dojoType="dijit.layout.ContentPane" region="right" style="background-color: #acb386; width: 100px;">
			right
		</div>
		<div dojoType="dijit.layout.ContentPane" region="top" style="background-color: #b39b86; height: 100px;">
			top bar
		</div>
		<div dojoType="dijit.layout.ContentPane" region="bottom" style="background-color: #b39b86; height: 100px;">
			bottom bar
		</div>
		<div dojoType="dijit.layout.ContentPane" region="center" style="background-color: #f5ffbf; padding: 0px;">
	
			<div dojoType="dijit.layout.BorderContainer" design="sidebar"
				style="border: 2px solid black; height: 300px;">
				<div dojoType="dijit.layout.ContentPane" region="left" style="background-color: #acb386; width: 100px;">
					left
				</div>
				<div dojoType="dijit.layout.ContentPane" region="right" style="background-color: #acb386; width: 100px;">
					right
				</div>
				<div dojoType="dijit.layout.ContentPane" region="top" style="background-color: #b39b86; height: 100px;">
					top bar
				</div>
				<div dojoType="dijit.layout.ContentPane" region="bottom" style="background-color: #b39b86; height: 100px;">
					bottom bar
				</div>
				<div dojoType="dijit.layout.ContentPane" region="center" style="background-color: #f5ffbf; padding: 10px;">
					main panel with <a href="http://www.dojotoolkit.org/">a link</a>.<br />
					(to check we're copying children around properly).<br />
					<select dojoType="dijit.form.FilteringSelect">
						<option value="1">foo</option>
						<option value="2">bar</option>
						<option value="3">baz</option>
					</select>
					Here's some text that comes AFTER the combo box.
				</div>
			</div>
		</div>
	</div>
</body>
</html>