Skip to content

Commit

Permalink
Selectmenu: Add new production selection demo
Browse files Browse the repository at this point in the history
Closes gh-1230
  • Loading branch information
fnagel authored and jzaefferer committed May 5, 2014
1 parent dfb8db2 commit 8e96263
Show file tree
Hide file tree
Showing 2 changed files with 94 additions and 0 deletions.
1 change: 1 addition & 0 deletions demos/selectmenu/index.html
Expand Up @@ -10,6 +10,7 @@
<ul>
<li><a href="default.html">Default functionality</a></li>
<li><a href="custom_render.html">Custom item rendering functionality</a></li>
<li><a href="product-selection.html">Product Selection</a></li>
</ul>

</body>
Expand Down
93 changes: 93 additions & 0 deletions demos/selectmenu/product-selection.html
@@ -0,0 +1,93 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Selectmenu - Product Selection</title>
<link rel="stylesheet" href="../../themes/base/all.css">
<script src="../../jquery.js"></script>
<script src="../../ui/core.js"></script>
<script src="../../ui/widget.js"></script>
<script src="../../ui/position.js"></script>
<script src="../../ui/menu.js"></script>
<script src="../../ui/selectmenu.js"></script>
<link rel="stylesheet" href="../demos.css">
<script>
$(function() {
var circle = $( "#circle" );

$( "#radius" ).selectmenu({
change: function( event, data ) {
circle.css({
width: data.item.value,
height: data.item.value
});
}
});

$( "#color" ).selectmenu({
change: function( event, data ) {
circle.css( "background", data.item.value );
}
});
});
</script>
<style>
fieldset {
border: 0;
margin-left: 300px;
}
label {
display: block;
margin: 20px 0 0 0;
}
select {
width: 200px;
}

#circle {
float: left;
background: yellow;
border-radius: 50%;
width: 150px;
height: 150px;
}
</style>
</head>
<body>

<div class="demo">

<form action="#">

<div id="circle"></div>

<fieldset>
<label for="radius">Circle radius</label>
<select name="radius" id="radius">
<option value="50">50px</option>
<option value="100">100px</option>
<option value="150" selected="selected">150px</option>
<option value="200">200px</option>
<option value="250">250px</option>
</select>

<label for="color">Circle color</label>
<select name="color" id="color">
<option value="black">Black</option>
<option value="red">Red</option>
<option value="yellow" selected="selected">Yellow</option>
<option value="blue">Blue</option>
<option value="green">Green</option>
</select>
</fieldset>

</form>

</div>

<div class="demo-description">
<p>This Selectmenu Widget demo changes color and radius of a CSS circle. This demo is using the provided callback events.</p>
</div>
</body>
</html>

0 comments on commit 8e96263

Please sign in to comment.