aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dijit/tests/test_Menu.html
blob: a0bed2702e436ec8c0de02b97eebfac5030cc618 (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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
		"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>

	<title>Menu System 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="parseOnLoad: true, isDebug: true"></script>
	<script type="text/javascript" src="_testCommon.js"></script>

	<script language="JavaScript" type="text/javascript">
		dojo.require("dijit.Menu");
		dojo.require("dijit.ColorPalette");
		dojo.require("dijit._Calendar");
		dojo.require("dojo.parser");	// scan page for widgets and instantiate them
	</script>
    
    <script language="Javascript" type="text/javascript">
        function createMenu() {
            // create a menu programmatically
            function fClick() {alert("clicked!")};
            
            pMenu = new dijit.Menu({targetNodeIds:["prog_menu"], id:"progMenu"});
            pMenu.addChild(new dijit.MenuItem({label:"Programmatic Context Menu", disabled:true}));
            pMenu.addChild(new dijit.MenuSeparator());
            pMenu.addChild(new dijit.MenuItem({label:"Simple menu item", onClick:fClick}));
            pMenu.addChild(new dijit.MenuItem({label:"Another menu item", onClick:fClick}));
            pMenu.addChild(new dijit.MenuItem({label:"With an icon", iconClass:"dijitEditorIcon dijitEditorIconCut", onClick:fClick}));
            var mItem = new dijit.MenuItem({label:"dojo.event clicking"});
            dojo.connect(mItem, "onClick", function(){alert("click! handler created via dojo.connect()")});
            pMenu.addChild(mItem);

            var pSubMenu = new dijit.Menu({parentMenu:pMenu, id:"progSubMenu"});
            pSubMenu.addChild(new dijit.MenuItem({label:"Submenu item", onClick:fClick}));
            pSubMenu.addChild(new dijit.MenuItem({label:"Submenu item", onClick:fClick}));
            pMenu.addChild(new dijit.PopupMenuItem({label:"Submenu", popup:pSubMenu, id:"progPopupMenuItem"}));
            
            pMenu.startup();
            
            dojo.byId("prog_menu").innerHTML="This div has a programmatic context menu on it that's different to the page menu."
            dojo.byId("createButton").disabled = true;
            dojo.byId("destroyButton").disabled = false;
        }
        
        function destroyMenu(){
        	pMenu.destroyRecursive();
            dojo.byId("prog_menu").innerHTML="No programmatic menu on this div, should get page level menu.";
            dojo.byId("createButton").disabled = false;
            dojo.byId("destroyButton").disabled = true;
        }
    </script>
</head>
<body>

<div dojoType="dijit.Menu" id="submenu1" contextMenuForWindow="true" style="display: none;">
	<div dojoType="dijit.MenuItem" onClick="alert('Hello world');">Enabled Item</div>
	<div dojoType="dijit.MenuItem" disabled="true">Disabled Item</div>
	<div dojoType="dijit.MenuSeparator"></div>
	<div dojoType="dijit.MenuItem" iconClass="dijitEditorIcon dijitEditorIconCut"
		onClick="alert('not actually cutting anything, just a test!')">Cut</div>
	<div dojoType="dijit.MenuItem" iconClass="dijitEditorIcon dijitEditorIconCopy"
		onClick="alert('not actually copying anything, just a test!')">Copy</div>
	<div dojoType="dijit.MenuItem" iconClass="dijitEditorIcon dijitEditorIconPaste"
		onClick="alert('not actually pasting anything, just a test!')">Paste</div>
	<div dojoType="dijit.MenuSeparator"></div>
	<div dojoType="dijit.PopupMenuItem">
		<span>Enabled Submenu</span>
		<div dojoType="dijit.Menu" id="submenu2">
			<div dojoType="dijit.MenuItem" onClick="alert('Submenu 1!')">Submenu Item One</div>
			<div dojoType="dijit.MenuItem" onClick="alert('Submenu 2!')">Submenu Item Two</div>
			<div dojoType="dijit.PopupMenuItem">
				<span>Deeper Submenu</span>
				<div dojoType="dijit.Menu" id="submenu4"">
					<div dojoType="dijit.MenuItem" onClick="alert('Sub-submenu 1!')">Sub-sub-menu Item One</div>
					<div dojoType="dijit.MenuItem" onClick="alert('Sub-submenu 2!')">Sub-sub-menu Item Two</div>
				</div>
			</div>
		</div>
	</div>
	<div dojoType="dijit.PopupMenuItem" disabled="true">
		<span>Disabled Submenu</span>
		<div dojoType="dijit.Menu" id="submenu3" style="display: none;">
			<div dojoType="dijit.MenuItem" onClick="alert('Submenu 1!')">Submenu Item One</div>
			<div dojoType="dijit.MenuItem" onClick="alert('Submenu 2!')">Submenu Item Two</div>
		</div>
	</div>
	<div dojoType="dijit.PopupMenuItem">
		<span>Different popup</span>
		<div dojoType="dijit.ColorPalette"></div>
	</div>
</div>

<div dojoType="dijit.Menu" id="leftClick" leftClickToOpen="true" targetNodeIds="input2" style="display: none;">
	<div dojoType="dijit.MenuItem" disabled="true">Left Click Menu</div>
	<div dojoType="dijit.MenuItem" onClick="alert('Hello world');">Enabled Item</div>
	<div dojoType="dijit.MenuItem" disabled="true">Disabled Item</div>
	<div dojoType="dijit.MenuSeparator"></div>
	<div dojoType="dijit.MenuItem" iconClass="dijitEditorIcon dijitEditorIconCut"
		onClick="alert('not actually cutting anything, just a test!')">Cut</div>
	<div dojoType="dijit.MenuItem" iconClass="dijitEditorIcon dijitEditorIconCopy"
		onClick="alert('not actually copying anything, just a test!')">Copy</div>
	<div dojoType="dijit.MenuItem" iconClass="dijitEditorIcon dijitEditorIconPaste"
		onClick="alert('not actually pasting anything, just a test!')">Paste</div>
	<div dojoType="dijit.MenuSeparator"></div>
	<div dojoType="dijit.PopupMenuItem">
		<span>Enabled Submenu</span>
		<div dojoType="dijit.Menu" id="leftsubmenu2">
			<div dojoType="dijit.MenuItem" onClick="alert('Submenu 1!')">Submenu Item One</div>
			<div dojoType="dijit.MenuItem" onClick="alert('Submenu 2!')">Submenu Item Two</div>
			<div dojoType="dijit.PopupMenuItem">
				<span>Deeper Submenu</span>
				<div dojoType="dijit.Menu" id="leftsubmenu4"">
					<div dojoType="dijit.MenuItem" onClick="alert('Sub-submenu 1!')">Sub-sub-menu Item One</div>
					<div dojoType="dijit.MenuItem" onClick="alert('Sub-submenu 2!')">Sub-sub-menu Item Two</div>
				</div>
			</div>
		</div>
	</div>
	<div dojoType="dijit.PopupMenuItem" disabled="true">
		<span>Disabled Submenu</span>
		<div dojoType="dijit.Menu" id="leftsubmenu3" style="display: none;">
			<div dojoType="dijit.MenuItem" onClick="alert('Submenu 1!')">Submenu Item One</div>
			<div dojoType="dijit.MenuItem" onClick="alert('Submenu 2!')">Submenu Item Two</div>
		</div>
	</div>
	<div dojoType="dijit.PopupMenuItem">
		<span>Different popup</span>
		<div dojoType="dijit.ColorPalette"></div>
	</div>
</div>

<!--
<div dojoType="dijit.MenuBar">
	<div dojoType="dijit.MenuBarItem" submenuId="submenu1">File</div>
	<div dojoType="dijit.MenuBarItem" submenuId="submenu">Edit</div>
	<div dojoType="dijit.MenuBarItem" disabled="true">View</div>
	<div dojoType="dijit.MenuBarItem" submenuId="submenu">Help</div>
	<div dojoType="dijit.MenuBarItem" onClick="alert('you clicked a menu bar button');">Click Me</div>
</div>
-->
<div style="padding: 1em">
	<h1 class="testTitle">Dijit Menu System Test</h1>

	<h3>Form</h3>

	<form>
		<input id=input1 value="top-left">
		<p style="text-align:right">left click to open the menu for this input:<br/>Note: because of the window contextMenu, make sure you get<br/> the right menu by verifying the left<br/>click one starts with "Left Click Menu"<br/> at the very top. <input id=input2 value="top-right"></p>
		<textarea id=textarea>hello there!</textarea><br>
		<select>
			<option>check if i</option>
			<option>bleed through</option>
			<option>on IE6</option>
		</select>
		<button id=button>push me</button>
	</form>

    <div id="prog_menu" style="border:1px solid blue; padding:10px; margin:20px 0;">
        Click button below to create special menu on this div.
    </div>
    <button id="createButton" onclick="createMenu();">create programmatic menu</button>
    <button id="destroyButton" onclick="destroyMenu();" disabled>destroy programmatic menu</button>

	<div style="height:500px"></div>
	<p>(this space intentionally left blank to aid testing with controls
	at the bottom of the browser window)</p>
	<div style="height:500px"></div>
	<input id=input3 value="bottom-left">
	<p style="text-align:right"><input id=input4 value="bottom-right"></p>

	<p>See also: <a href="form/test_Button.html">form/test_Button</a>
	(PopupMenu is used with DropDownButton and ComboButton)</p>

	<h3>Mouse opening tests</h3>

	<ul>
		<li>Right click on the client area of the page (ctrl-click for Macintosh). Menu should open.</li>
		<li>Right click on each of the form controls above. Menu should open.</li>
		<li>Right click near the righthand window border. Menu should open to the left of the pointer.</li>
		<li>Right click near the bottom window border. Menu should open above the pointer.</li>
	</ul>


	<h3>Mouse hover tests</h3>

	<ul>
		<li>Hover over the first item with the pointer. Item should highlight and get focus.</li>
		<li>Hover over the second (disabled) item. Item should highlight and get focus.</li>
		<li>Seperator items should not highlight on hover - no items should highlight in this case.</li>
	</ul>


	<h3>Mouse click tests</h3>

	<ul>
		<li>Click on the first menu item. Alert should open with the message "Hello world". The menu should dissapear.</li>
		<li>Click on the second menu item (disabled). Should not do anything - focus should remain on the disabled item.</li>
		<li>Click anywhere outside the menu. Menu should close. Focus will be set by the browser based on where the user clicks.</li>
	</ul>


	<h3>Mouse submenu tests</h3>

	<ul>
		<li>Hover over the "Enabled Submenu" item. Item should highlight and then pop open a submenu after a short (500ms) delay.</li>
		<li>Hover over any of the other menu items. Submenu should close immediately and deselect the submenu parent item. The newly hovered item should become selected.</li>
		<li>Hover over the "Disabled Submenu" item. Item should highlight, but no submenu should appear.</li>
		<li>Clicking on the "Enabled Submenu" item before the submenu has opened (you'll have to be quick!) should immediatley open the submenu.</li>
		<li>Clicking on the "Enabled Submenu" item <i>after</i> the submenu has opened should have no effect - the item is still selected and the submenu still open.</li>
		<li>Hover over submenu item 1. Should select it - the parent menu item should stay selected also.</li>
		<li>Hover over submenu item 2. Should select it - the parent menu item should stay selected also.</li>
	</ul>


	<h3>Keyboard opening tests</h3>

	<ul>
		<li>On Windows: press shift-f10 with focus on any of the form controls. Should open the menu.</li>
		<li>On Windows: press the context menu key (located on the right of the space bar on North American keyboards) with focus on any of the form controls. Should open the menu.</li>
		<li>On Firefox on the Mac: press ctrl-space with focus on any of the form controls. Should open the menu.</li>
	</ul>


	<h3>Keyboard closing tests</h3>

	<ul>
		<li>Open the menu.</li>
		<li>Press tab. Should close the menu and return focus to where it was before the menu was opened.</li>
		<li>Open the menu.</li>
		<li>Press escape. Should close the menu and return focus to where it was before the menu was opened.</li>
	</ul>


	<h3>Keyboard navigation tests</h3>

	<ul>
		<li>Open the menu.</li>
		<li>Pressing up or down arrow should cycle focus through the items in that menu.</li>
		<li>Pressing enter or space should invoke the menu item.</li>
		<li>Disabled items receive focus but no action is taken upon pressing enter or space.</li>
	</ul>


	<h3>Keyboard submenu tests</h3>

	<ul>
		<li>Open the menu.</li>
		<li>The first item should become selected.</li>
		<li>Press the right arrow key. Nothing should happen.</li>
		<li>Press the left arrow key. Nothing should happen.</li>
		<li>Press the down arrow until "Enabled Submenu" is selected. The submenu should not appear.</li>
		<li>Press enter. The submenu should appear with the first item selected.</li>
		<li>Press escape. The submenu should vanish - "Enabled Submenu" should remain selected.</li>
		<li>Press the right arrow key. The submenu should appear with the first item selected.</li>
		<li>Press the right arrow key. Nothing should happen.</li>
		<li>Press the left arrow key. The submenu should close - "Enabled Submenu" should remain selected.</li>
		<li>Press the left arrow key. The menu should <i>not</i> close and "Enabled Submenu" should remain selected.</li>
		<li>Press escape. The menu should close and focus should be returned to where it was before the menu was opened.</li>
	</ul>

</div>

</body>
</html>