aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/selectmenu/disabled.html
blob: e2bc436ac1c05e9144b1b306b8f272745f9505ab (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
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>jQuery UI Selectmenu - Disable functionality</title>
	<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css">
	<script src="../../../jquery-1.7.1.js"></script>
	<script src="../../../ui/jquery.ui.core.js"></script>
	<script src="../../../ui/jquery.ui.widget.js"></script>
	<script src="../../../ui/jquery.ui.position.js"></script>
	<script src="../../../ui/jquery.ui.button.js"></script>
	<script src="../../../ui/jquery.ui.menu.js"></script>
	<script src="../../../ui/jquery.ui.selectmenu.js"></script>
	<link rel="stylesheet" href="../../../demos/demos.css">
	<script>
	$(function() {
		$('select#speed').selectmenu({
			dropdown: false
		});
		var withOverflow = $('select#number').selectmenu({
			dropdown: false
		});
		withOverflow.selectmenu("widget").addClass("overflow");
		$('select#files').selectmenu();
		var files2 = $('select#files2').selectmenu();

		$("#disable_select").toggle( function() {
			files2.selectmenu("disable");
		}, function() {
			files2.removeAttr("disabled");
			files2.selectmenu("refresh");
		});
		$("#disable_option").toggle( function() {
			files2.find("option:eq(0)").attr("disabled", "disabled");
			files2.selectmenu("refresh");
		}, function() {
			files2.find("option:eq(0)").removeAttr("disabled");
			files2.selectmenu("refresh");
		});
		$("#disable_optgroup").toggle( function() {
			files2.find("optgroup:eq(0)").attr("disabled", "disabled");
			files2.selectmenu("refresh");
		}, function() {
			files2.find("optgroup:eq(0)").removeAttr("disabled");
			files2.selectmenu("refresh");

		});
	});
	</script>
	<style>
		form { margin: 100px 0 0 0 }
		fieldset { border: 0; }
		label { display: block; }
		select { width: 200px; }
		.overflow ul { height: 200px; overflow: auto; }
	</style>
</head>
<body>

<div class="demo">

<form action="#">
	<fieldset>
		<label for="speed">Select a speed:</label>
		<select disabled="disabled" name="speed" id="speed">
			<option value="Slower">Slower</option>
			<option value="Slow">Slow</option>
			<option value="Medium" selected="selected">Medium</option>
			<option value="Fast">Fast</option>
			<option value="Faster">Faster</option>
		</select>
		<br />
		<br />
		<br />
		<label for="number">Select a number:</label>
		<select name="number" id="number">
			<option value="1">1</option>
			<option value="2" selected="selected">2</option>
			<option value="3">3</option>
			<option disabled="disabled" value="4">4</option>
			<option value="5">5</option>
			<option value="6">6</option>
			<option value="7">7</option>
			<option disabled="disabled" value="8">8</option>
			<option value="9">9</option>
			<option value="10">10</option>
			<option disabled="disabled" value="11">11</option>
			<option value="12">12</option>
			<option value="13">13</option>
			<option disabled="disabled" value="14">14</option>
			<option disabled="disabled" value="15">15</option>
			<option value="16">16</option>
			<option value="17">17</option>
			<option value="18">18</option>
			<option value="19">19</option>
		</select>
		<br />
		<br />
		<br />
		<label for="files">Select a file:</label>
		<select name="files" id="files">
			<optgroup disabled="disabled" label="Scripts">
				<option value="jquery">jQuery.js</option>
				<option value="jqueryui">ui.jQuery.js</option>
			</optgroup>
			<optgroup label="Other files">
				<option value="somefile">Some unknown file</option>
				<option value="someotherfile">Some other file</option>
			</optgroup>
		</select>
		<br />
		<br />
		<br />
		<label for="files2">Select a file:</label>
		<select name="files2" id="files2">
			<optgroup label="Scripts">
				<option value="jquery">jQuery.js</option>
				<option value="jqueryui">ui.jQuery.js</option>
			</optgroup>
			<optgroup label="Other files">
				<option value="somefile">Some unknown file</option>
				<option value="someotherfile">Some other file</option>
			</optgroup>
		</select>
	</fieldset>
</form>
<br />
<button id="disable_select">Toggle disable select</button>
<button id="disable_option">Toggle disable option</button>
<button id="disable_optgroup">Toggle disable optgroup</button>

</div><!-- End demo -->



</body>
</html>