forked from dnasir/jquery-cascading-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
435 lines (402 loc) · 12.7 KB
/
demo.html
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>jQuery Cascading Dropdown Plugin Examples</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Stylesheets here -->
<link rel="stylesheet" type="text/css" href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.0/css/bootstrap.min.css" />
<style type="text/css">
.bs-docs-example {
position: relative;
margin: 15px 0;
padding: 39px 19px 14px;
background-color: #fff;
border: 1px solid #ddd;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.bs-docs-example:after {
content: "Example";
position: absolute;
top: -1px;
left: -1px;
padding: 3px 7px;
font-size: 12px;
font-weight: bold;
background-color: #f5f5f5;
border: 1px solid #ddd;
color: #9da0a4;
-webkit-border-radius: 4px 0 4px 0;
-moz-border-radius: 4px 0 4px 0;
border-radius: 4px 0 4px 0;
}
.cascading-dropdown-loading {
cursor: wait;
background: url('ajax-loader.gif') 85% center no-repeat transparent;
}
</style>
<link rel="stylesheet" type="text/css" href="http://cdnjs.cloudflare.com/ajax/libs/SyntaxHighlighter/3.0.83/styles/shCore.css">
<link rel="stylesheet" type="text/css" href="http://cdnjs.cloudflare.com/ajax/libs/SyntaxHighlighter/3.0.83/styles/shThemeDefault.css">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>jQuery Cascading Dropdown <small>Examples</small></h1>
</div>
<h4>Basic</h4>
<p>This is a basic dropdown setup where the second dropdown is dependent on the first dropdown having a value, and the third dropdown is dependent on either the first or second one having a value.</p>
<p>This example also shows how you can set the selected dropdown item when you initialise the plugin. This can be done either in code, or by including the HTML selected attribute on the targeted dropdown item.</p>
<div id="example1" class="bs-docs-example">
<h4>Phone finder</h4>
<select class="step1" name="screen">
<option value="">Screen size</option>
<option value="4">4.0"</option>
<option value="4.3">4.3"</option>
<option value="4.7">4.7"</option>
<option value="5">5.0"</option>
</select>
<select class="step2" name="resolution">
<option value="">Screen resolution</option>
<option value="540" selected>540p</option>
<option value="720">720p</option>
<option value="1080">1080p</option>
</select>
<select class="step3" name="storage">
<option value="">Storage size</option>
<option value="8">8 GB</option>
<option value="16">16 GB</option>
<option value="32">32 GB</option>
<option value="64">64 GB</option>
</select>
<h4>Matches <img src="ajax-loader.gif" data-bind="visible: loading" /></h4>
<ul data-bind="foreach: phones, visible: phones().length > 0">
<li>
<span data-bind="text: maker"></span>
<span data-bind="text: model"></span>
</li>
</ul>
<p data-bind="visible: phones().length == 0">No matches</p>
</div>
<h6>Code</h6>
<div>
<pre class="brush: js">$('#example1').cascadingDropdown({
selectBoxes: [
{
selector: '.step1',
selected: '4.3'
},
{
selector: '.step2',
requires: ['.step1']
},
{
selector: '.step3',
requires: ['.step1', '.step2'],
onChange: function(event, value, requiredValues) {
// do stuff
// value is the current dropdown value
// requiredValues is an object with required dropdown values
}
}
]
});</pre>
</div>
<br />
<h4>Dynamic</h4>
<p>This example shows how you can create a completely dynamic group of dropdowns. Dropdowns with dependencies will react based on the rules given, and fetch its own list from the server via Ajax. </p>
<p>You can provide an array of strings or objects, or a function as the dropdown data source.</p>
<p>This example also demonstrates how you can set the selected item for a dropdown in the source option. For example, you can have it select an item when it is the only item available. The plugin will select that item and trigger the change event.</p>
<div id="example2" class="bs-docs-example">
<h4>Phone finder</h4>
<select class="step1" name="screen">
<option value="">Screen size</option>
</select>
<select class="step2" name="resolution">
<option value="">Screen resolution</option>
</select>
<select class="step3" name="storage">
<option value="">Storage size</option>
</select>
<h4>Matches <img src="ajax-loader.gif" data-bind="visible: loading" /></h4>
<ul data-bind="foreach: phones, visible: phones().length > 0">
<li>
<span data-bind="text: maker"></span>
<span data-bind="text: model"></span>
</li>
</ul>
<p data-bind="visible: phones().length == 0">No matches</p>
</div>
<h6>Code</h6>
<div>
<pre class="brush: js">$('#example2').cascadingDropdown({
selectBoxes: [
{
selector: '.step1',
source: [
{ label: '4.0"', value: 4 },
{ label: '4.3"', value: 4.3 },
{ label: '4.7"', value: 4.7 },
{ label: '5.0"', value: 5 }
]
},
{
selector: '.step2',
requires: ['.step1'],
source: function(request, response) {
$.getJSON('/api/resolutions', request, function(data) {
var selectOnlyOption = data.length <= 1;
response($.map(data, function(item, index) {
return {
label: item + 'p',
value: item,
selected: selectOnlyOption // Select if only option
};
}));
});
}
},
{
selector: '.step3',
requires: ['.step1', '.step2'],
requireAll: true,
source: function(request, response) {
$.getJSON('/api/storages', request, function(data) {
response($.map(data, function(item, index) {
return {
label: item + ' GB',
value: item,
selected: index == 0 // Select first available option
};
}));
});
},
onChange: function(event, value, requiredValues){
// do stuff
}
}
]
});</pre>
</div>
<br />
<h4>Combined</h4>
<p>This example demonstrates the plugin's capability to combine both static and dynamic dropdowns. It also demonstrates how you can set the default selected dropdown item in a dynamic dropdown scenario.</p>
<div id="example3" class="bs-docs-example">
<h4>Phone finder</h4>
<select class="step1" name="screen">
<option value="">Screen size</option>
<option value="4" selected="selected">4.0"</option>
<option value="4.3">4.3"</option>
<option value="4.7">4.7"</option>
<option value="5">5.0"</option>
</select>
<select class="step2" name="resolution">
<option value="">Screen resolution</option>
</select>
<select class="step3" name="storage">
<option value="">Storage size</option>
</select>
<h4>Matches <img src="ajax-loader.gif" data-bind="visible: loading" /></h4>
<ul data-bind="foreach: phones, visible: phones().length > 0">
<li>
<span data-bind="text: maker"></span>
<span data-bind="text: model"></span>
</li>
</ul>
<p data-bind="visible: phones().length == 0">No matches</p>
</div>
<h6>Code</h6>
<div>
<pre class="brush: js">$('#example3').cascadingDropdown({
selectBoxes: [
{
selector: '.step1'
},
{
selector: '.step2'
},
{
selector: '.step3',
requires: ['.step1', '.step2'],
requireAll: true,
source: function(request, response) {
$.getJSON('/api/storages', request, function(data) {
response($.map(data, function(item, index) {
return {
label: item + ' GB',
value: item,
selected: index == 0 // set to true to mark it as the selected item
};
}));
});
}
}
],
onChange: function(event, dropdownData) {
// do stuff
// dropdownData is an object with values from all the dropdowns in this group
},
onReady: function(event, dropdownData) {
// do stuff
}
});</pre>
</div>
<br />
<p class="text-center"><small>Copyright © 2013 <a href="http://dnasir.com">Dzulqarnain Nasir</a></small></p>
</div>
<!-- Scripts here -->
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/knockout/2.3.0/knockout-min.js"></script>
<script type="text/javascript" src="jquery.mockjax.js"></script>
<script type="text/javascript" src="ajax-mocks.js"></script>
<script type="text/javascript" src="jquery.cascadingdropdown.js"></script>
<script type="text/javascript">
function viewmodel() {
this.phones = ko.observableArray([]);
this.loading = ko.observable(false);
}
var example1 = new viewmodel(),
example2 = new viewmodel(),
example3 = new viewmodel();
ko.applyBindings(example1, document.getElementById('example1'));
ko.applyBindings(example2, document.getElementById('example2'));
ko.applyBindings(example3, document.getElementById('example3'));
// Example 1
$('#example1').cascadingDropdown({
selectBoxes: [
{
selector: '.step1',
selected: '4.3'
},
{
selector: '.step2',
requires: ['.step1']
},
{
selector: '.step3',
requires: ['.step1', '.step2'],
onChange: function(event, value, requiredValues) {
example1.loading(true);
var ajaxData = requiredValues;
ajaxData[this.el.attr('name')] = value;
$.getJSON('/api/phones', ajaxData, function(data) {
example1.phones(data);
example1.loading(false);
});
}
}
]
});
// Example 2
$('#example2').cascadingDropdown({
selectBoxes: [
{
selector: '.step1',
source: [{ label: '4.0"', value: 4 }, { label: '4.3"', value: 4.3 }, { label: '4.7"', value: 4.7 }, { label: '5.0"', value: 5 }]
},
{
selector: '.step2',
requires: ['.step1'],
source: function(request, response) {
$.getJSON('/api/resolutions', request, function(data) {
var selectOnlyOption = data.length <= 1;
response($.map(data, function(item, index) {
return {
label: item + 'p',
value: item,
selected: selectOnlyOption
};
}));
});
}
},
{
selector: '.step3',
requires: ['.step1', '.step2'],
requireAll: true,
source: function(request, response) {
$.getJSON('/api/storages', request, function(data) {
response($.map(data, function(item, index) {
return {
label: item + ' GB',
value: item,
selected: index == 0
};
}));
});
},
onChange: function(event, value, requiredValues) {
example2.loading(true);
var ajaxData = requiredValues;
ajaxData[this.el.attr('name')] = value;
$.getJSON('/api/phones', ajaxData, function(data) {
example2.phones(data);
example2.loading(false);
});
}
}
]
});
// Example 3
$('#example3').cascadingDropdown({
selectBoxes: [
{
selector: '.step1'
},
{
selector: '.step2',
source: function(request, response) {
$.getJSON('/api/resolutions', request, function(data) {
response($.map(data, function(item, index) {
return {
label: item + 'p',
value: item,
selected: index == 0
};
}));
});
}
},
{
selector: '.step3',
requires: ['.step1', '.step2'],
requireAll: true,
source: function(request, response) {
$.getJSON('/api/storages', request, function(data) {
response($.map(data, function(item, index) {
return {
label: item + ' GB',
value: item,
selected: index == 0
};
}));
});
}
}
],
onChange: function(event, dropdownData) {
example3.loading(true);
$.getJSON('/api/phones', dropdownData, function(data) {
example3.phones(data);
example3.loading(false);
});
},
onReady: function(event, dropdownData) {
example3.loading(true);
$.getJSON('/api/phones', dropdownData, function(data) {
example3.phones(data);
example3.loading(false);
});
}
});
</script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/SyntaxHighlighter/3.0.83/scripts/shCore.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/SyntaxHighlighter/3.0.83/scripts/shBrushJScript.js"></script>
<script type="text/javascript">
SyntaxHighlighter.all();
</script>
</body>
</html>