diff options
author | Felix Nagel <info@felixnagel.com> | 2011-09-02 00:21:09 +0200 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2011-09-22 01:34:49 +0200 |
commit | ecd8ea4a1c40b6056381e920dd03add3db52d4dd (patch) | |
tree | 314ff4122a1bc4f39c47c500801454cb51604c50 /demos/selectmenu | |
parent | 25f2113cc11b732224f98a9755a48d27177ed7c1 (diff) | |
download | jquery-ui-ecd8ea4a1c40b6056381e920dd03add3db52d4dd.tar.gz jquery-ui-ecd8ea4a1c40b6056381e920dd03add3db52d4dd.zip |
Selectmenu: basic implementation
Diffstat (limited to 'demos/selectmenu')
-rw-r--r-- | demos/selectmenu/default.html | 67 | ||||
-rw-r--r-- | demos/selectmenu/index.html | 16 |
2 files changed, 83 insertions, 0 deletions
diff --git a/demos/selectmenu/default.html b/demos/selectmenu/default.html new file mode 100644 index 000000000..e1b4517c3 --- /dev/null +++ b/demos/selectmenu/default.html @@ -0,0 +1,67 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>jQuery UI Selectmenu - Default 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.css"> + <script> + $(function() { + $('select').selectmenu(); + }); + </script> + <style> + form { margin: 200px 0 0 0; } + fieldset { border: 0; } + select { width: 200px; } + </style> +</head> +<body> + +<div class="demo"> + +<form action="#"> + <fieldset> + <label for="speedA">Select a Speed:</label> + <select name="speedA" id="speedA"> + <option value="Slower">Slower</option> + <option value="Slow" selected="selected">Slow</option> + <option value="Medium">Medium</option> + <option value="Fast">Fast</option> + <option value="Faster">Faster</option> + </select> + <br /> + <br /> + <br /> + <label for="filesC">Select a file:</label> + <select name="filesC" id="filesC"> + <optgroup label="scripts"> + <option value="jquery">jQuery.js</option> + <option value="jqueryui">ui.jQuery.js</option> + </optgroup> + <optgroup label="Label with space"> + <option value="somefile">Some unknown file</option> + <option value="someotherfile">Some other file</option> + </optgroup> + </select> + </fieldset> +</form> + +</div><!-- End demo --> + + + +<div class="demo-description"> +<p>The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are tags for programming languages, give "ja" (for Java or JavaScript) a try.</p> +<p>The datasource is a simple JavaScript array, provided to the widget using the source-option.</p> +</div><!-- End demo-description --> + +</body> +</html> diff --git a/demos/selectmenu/index.html b/demos/selectmenu/index.html new file mode 100644 index 000000000..909c3e262 --- /dev/null +++ b/demos/selectmenu/index.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <title>jQuery UI Selectmenu Demos</title> + <link rel="stylesheet" href="../demos.css"> +</head> +<body> + <div class="demos-nav"> + <h4>Examples</h4> + <ul> + <li class="demo-config-on"><a href="default.html">Default functionality</a></li> + </ul> + </div> +</body> +</html> |