blob: 0d5e3ee67d667644cd3b7d66e82db069c8d46f9d (
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Selectmenu - Event functionality</title>
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css">
<script src="../../../jquery-1.6.2.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() {
var log = $("#log");
var index = 0;
$('select').selectmenu({
open: function(event, ui) {
$("<div/>").text( index++ + " Opened").prependTo(log);
},
close: function(event, ui) {
$("<div/>").text( index++ + " Closed").prependTo(log);
},
focus : function(event, ui) {
$("<div/>").text( index++ + " Focused: " + ui.item.label).prependTo(log);
},
select: function(event, ui) {
$("<div/>").text( index++ + " Selected: " + ui.item.label).prependTo(log);
},
change: function(event, ui) {
$("<div/>").text( index++ + " Changed to: " + ui.item.label).prependTo(log);
}
});
});
</script>
<style>
form { margin: 20px 0 0 0 }
fieldset { border: 0; }
select { width: 200px; }
.overflow ul { height: 200px; overflow: auto; }
</style>
</head>
<body>
<div class="demo">
<div class="ui-widget" style="float: left; margin-top:2em; font-family:Arial">
Log:
<div id="log" style="height: 400px; width: 270px; overflow: auto;" class="ui-widget-content"></div>
</div>
<form action="#">
<fieldset>
<label for="speed">Select a speed:</label>
<select 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>
</form>
</div><!-- End demo -->
</body>
</html>
|