aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dijit/tests/form/test_TimeTextBox.html
blob: f68a28d400b213ec535c8404add0c9efdd457a49 (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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
	"http://www.w3.org/TR/html4/strict.dtd">
<html>
	<head>
		<title>Test TimeTextBox Widget</title>

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

			.testExample {
				background-color:#fbfbfb;
				padding:1em;
				margin-bottom:1em;
				border:1px solid #bfbfbf;
			}

			body .medium {
				width: 10em;
			}

			.noticeMessage {
				color:#093669;
				font-size:0.95em;
				margin-left:0.5em;
			}

			.dojoTitlePaneLabel label {
				font-weight:bold;
			}
		</style>
		
		<script type="text/javascript" src="../../../dojo/dojo.js"
			djConfig="isDebug: true, parseOnLoad: true, extraLocale: ['de-de', 'en-us']"></script>
		<script type="text/javascript" src="../_testCommon.js"></script>

		<script type="text/javascript">
			dojo.require("dijit.form.TextBox");
			dojo.require("dijit.form.ValidationTextBox");
			dojo.require("dijit.form.NumberTextBox");
			dojo.require("dijit.form.CurrencyTextBox");
			dojo.require("dijit.form.DateTextBox");
			dojo.require("dijit.form.TimeTextBox");
			dojo.require("dojo.currency");
			dojo.require("dojo.date.locale");
			dojo.require("dojo.parser");	// scan page for widgets and instantiate them
		</script>
	</head>

	<body>
		<h1 class="testTitle">Test TimeTextBox Widget</h1>
		<!--	to test form submission, you'll need to create an action handler similar to
			http://www.utexas.edu/teamweb/cgi-bin/generic.cgi -->
		<form id="form1" action="" name="example" method="">

	<div class="dojoTitlePaneLabel">
		<label for="q1">Time using local conventions with seconds</label>
		<span class="noticeMessage">TimeTextBox class,
			Attributes: {formatLength:'medium'}</span>
	</div>
	<div class="testExample">
		<input id="q1" type="text" name="time1" class="medium" value="T17:45:00"
			dojoType="dijit.form.TimeTextBox"
			constraints="{formatLength:'medium'}"
			required="true"
			onChange="dojo.byId('oc1').value=arguments[0]"
			invalidMessage="Invalid time." />
		onChange:<input id="oc1" size="34" disabled value="not fired yet!" autocomplete="off">
	</div>

	<div class="dojoTitlePaneLabel">
		<label for="q2">Time using local conventions without seconds, required, no invalid message tooltip</label>
		<span class="noticeMessage">TimeTextBox class,
			Attributes: {formatLength:'short'}</span>
	</div>
	<div class="testExample">
		<input id="q2" type="text" name="time1a" class="medium" value="T17:45:00"
			dojoType="dijit.form.TimeTextBox"
			constraints="{formatLength:'short'}"
			required="true"
			invalidMessage="" />
	</div>

	<div class="dojoTitlePaneLabel">
		<label for="q3"> 12 Hour Time </label>
		<span class="noticeMessage">TimeTextBox class,
			Attributes: {timePattern:'h:mm:ss a'}</span>
	</div>
	<div class="testExample">
		<input id="q3" type="text" name="time1b" class="medium" value="T17:45:00"
			dojoType="dijit.form.TimeTextBox"
			constraints="{timePattern:'h:mm:ss a'}"
			required="true"
			invalidMessage="Invalid time." />
	</div>

	<div class="dojoTitlePaneLabel">
		<label for="q4"> 24 Hour Time</label>
		<span class="noticeMessage">TimeTextBox class,
			Attributes: {timePattern:'HH:mm:ss'}</span>
	</div>
	<div class="testExample">
		<input id="q4" type="text" name="time2" class="medium" value="T17:45:00"
			dojoType="dijit.form.TimeTextBox"
			constraints="{timePattern:'HH:mm:ss'}"
			required="true"
			invalidMessage="Invalid time. Use HH:mm:ss where HH is 00 - 23 hours.">
	</div>

	<div class="dojoTitlePaneLabel">
		<label for="q5">24 Hour Time with 1 Hour TimePicker</label>
		<span class="noticeMessage">TimeTextBox class,
			Attributes: {timePattern:'HH:mm:ss', clickableIncrement:'T00:15:00', visibleIncrement:'T00:15:00', visibleRange:'T01:00:00'}</span>
	</div>
	<div class="testExample">
		<input id="q5" type="text" name="time2" class="medium" value="T17:45:00"
			dojoType="dijit.form.TimeTextBox"
			constraints="{timePattern:'HH:mm:ss', clickableIncrement:'T00:15:00', visibleIncrement:'T00:15:00', visibleRange:'T01:00:00'}"
			required="true"
			invalidMessage="Invalid time. Use HH:mm:ss where HH is 00 - 23 hours.">
	</div>

	<script>
	        function displayData() {
	                var f = document.getElementById("form1");
	                var s = "";
	                for (var i = 0; i < f.elements.length; i++) {
	                        var elem = f.elements[i];
	                        if (elem.name == "button")  { continue; }
	                        s += elem.name + ": " + elem.value + "\n";
	                }
	                alert(s);
	        }
	</script>

		<div>
			<button name="button" onclick="displayData(); return false;">view data</button>
			<input type="submit" name="submit" />
		</div>

		</form>
	</body>
</html>