aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dijit/tests/layout/test_TabContainer_remote.html
blob: 19515a964419de08630c03ae78d67426b70bbc8e (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
		"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
	<title>TabContainer Demo</title>

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

		body {
			font-family : sans-serif;
			margin:20px;
		}

		/* add padding to each contentpane inside the tab container, and scrollbar if necessary */
		.dojoTabPane {
			padding : 10px 10px 10px 10px;
			overflow: auto;
		}
	</style>
	
	<script type="text/javascript" djConfig="isDebug: true,parseOnLoad:true"
		src="../../../dojo/dojo.js"></script>
	<script type="text/javascript" src="../_testCommon.js"></script>

	<script type="text/javascript">
		dojo.require("dijit.layout.ContentPane");
		dojo.require("dijit.layout.TabContainer");
		dojo.require("dijit.Tooltip");
		dojo.require("dijit.layout.LinkPane");
		dojo.require("dijit.form.Button");
		dojo.require("dojo.parser");	// scan page for widgets and instantiate them

		var tabCounter;
		function testClose(pane, tab){
			// remove html from title
			var title = dojo.trim(tab.title.replace(/<\/?[a-z][a-z0-9]*[^>]*>/ig, ""));
			return confirm("Please confirm that you want tab "+title+" closed");
		}

		function randomMessageId(){
			return Math.floor(Math.random() * 3) + 3;
		}

		function createTab(){
			if(!tabCounter){ tabCounter = 3; }

			var title = '<img src="../images/plus.gif" style="background-color:#95B7D3;"/> Tab ' +(++tabCounter);
			var refreshOnShow = !!(tabCounter % 2);

			var newTab = new dijit.layout.ContentPane({
				title: title + (refreshOnShow ? ' <i>refreshOnShow</i>': ''),
				closable:true,
				refreshOnShow: refreshOnShow,
				href: 'getResponse.php?delay=1000&messId='+randomMessageId()
					+"&message="+encodeURI("<h1>Programmatically created Tab "+tabCounter+"</h1>")
			}, dojo.doc.createElement('div'));

			dijit.byId('ttabs').addChild(newTab);

			newTab.startup(); // find parent TabContainer and subscribe to selectChild event
		}

		startTime = new Date();
		dojo.addOnLoad(function(){
			var elapsed = new Date().getTime() - startTime;
			var p = document.createElement("p");
			p.appendChild(document.createTextNode("Widgets loaded in " + elapsed + "ms"));
			document.body.appendChild(p);
		});
	</script>
</head>
<body>

	<h1 class="testTitle">Dijit layout.TabContainer (delayed) remote tests</h1>

	<p>These tabs are made up of external content. Loading is delayed to make it easier to see if refreshOnShow and preload = 'false' is working.<br/>
	The tabs also tests to insert html in the Tab title
	</p>

	<div dojoType='dijit.form.Button' onClick='createTab()'>Create a Tab</div>
	<div id="ttabs" dojoType="dijit.layout.TabContainer" tabPosition="top" style="width: 100%; height: 20em;">
		<a id="ttab1" dojoType="dijit.layout.LinkPane"
			href="getResponse.php?messId=3&delay=1000"
			closable="true"
		><img src='../images/copy.gif'/> Tab1</a>
		<a id="ttab2" dojoType="dijit.layout.LinkPane"
			href="getResponse.php?messId=4&delay=1000"
			refreshOnShow="true" title="Tab 2 "
			selected='true'
			closable='true'
		><i>refreshOnShow</i>
			<img src='../images/cut.gif'/>
		</a>
		<a dojoType="dijit.layout.LinkPane"
			href="getResponse.php?messId=5&delay=1000"
			onClose="testClose"
			closable="true"
		>
			<b>Tab 3</b>
			<img src='../images/paste.gif'/>
		</a>
	</div>

	<h3>Rendering time</h3>

</body>
</html>