Selectable demos: coding standards.

This commit is contained in:
Scott González 2010-09-27 15:47:17 -04:00
parent 6b6e1d76e7
commit 03517636e8
4 changed files with 52 additions and 46 deletions

View File

@ -1,30 +1,31 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="utf-8">
<title>jQuery UI Selectable - Default functionality</title> <title>jQuery UI Selectable - Default functionality</title>
<link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
<script type="text/javascript" src="../../jquery-1.4.2.js"></script> <script src="../../jquery-1.4.2.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.core.js"></script> <script src="../../ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script> <script src="../../ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script> <script src="../../ui/jquery.ui.mouse.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.selectable.js"></script> <script src="../../ui/jquery.ui.selectable.js"></script>
<link type="text/css" href="../demos.css" rel="stylesheet" /> <link rel="stylesheet" href="../demos.css">
<style type="text/css"> <style>
#feedback { font-size: 1.4em; } #feedback { font-size: 1.4em; }
#selectable .ui-selecting { background: #FECA40; } #selectable .ui-selecting { background: #FECA40; }
#selectable .ui-selected { background: #F39814; color: white; } #selectable .ui-selected { background: #F39814; color: white; }
#selectable { list-style-type: none; margin: 0; padding: 0; width: 60%; } #selectable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
#selectable li { margin: 3px; padding: 0.4em; font-size: 1.4em; height: 18px; } #selectable li { margin: 3px; padding: 0.4em; font-size: 1.4em; height: 18px; }
</style> </style>
<script type="text/javascript"> <script>
$(function() { $(function() {
$("#selectable").selectable(); $( "#selectable" ).selectable();
}); });
</script> </script>
</head> </head>
<body> <body>
<div class="demo"> <div class="demo">
<ol id="selectable"> <ol id="selectable">
@ -39,10 +40,11 @@
</div><!-- End demo --> </div><!-- End demo -->
<div class="demo-description"> <div class="demo-description">
<p>Enable a DOM element (or group of elements) to be selectable. Draw a box with your cursor to select items. Hold down the Ctrl key to make multiple non-adjacent selections. </p> <p>Enable a DOM element (or group of elements) to be selectable. Draw a box with your cursor to select items. Hold down the Ctrl key to make multiple non-adjacent selections. </p>
</div><!-- End demo-description --> </div><!-- End demo-description -->
</body> </body>
</html> </html>

View File

@ -1,30 +1,31 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="utf-8">
<title>jQuery UI Selectable - Display as grid</title> <title>jQuery UI Selectable - Display as grid</title>
<link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
<script type="text/javascript" src="../../jquery-1.4.2.js"></script> <script src="../../jquery-1.4.2.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.core.js"></script> <script src="../../ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script> <script src="../../ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script> <script src="../../ui/jquery.ui.mouse.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.selectable.js"></script> <script src="../../ui/jquery.ui.selectable.js"></script>
<link type="text/css" href="../demos.css" rel="stylesheet" /> <link rel="stylesheet" href="../demos.css">
<style type="text/css"> <style>
#feedback { font-size: 1.4em; } #feedback { font-size: 1.4em; }
#selectable .ui-selecting { background: #FECA40; } #selectable .ui-selecting { background: #FECA40; }
#selectable .ui-selected { background: #F39814; color: white; } #selectable .ui-selected { background: #F39814; color: white; }
#selectable { list-style-type: none; margin: 0; padding: 0; } #selectable { list-style-type: none; margin: 0; padding: 0; }
#selectable li { margin: 3px; padding: 1px; float: left; width: 100px; height: 80px; font-size: 4em; text-align: center; } #selectable li { margin: 3px; padding: 1px; float: left; width: 100px; height: 80px; font-size: 4em; text-align: center; }
</style> </style>
<script type="text/javascript"> <script>
$(function() { $(function() {
$("#selectable").selectable(); $( "#selectable" ).selectable();
}); });
</script> </script>
</head> </head>
<body> <body>
<div class="demo"> <div class="demo">
<ol id="selectable"> <ol id="selectable">
@ -44,10 +45,11 @@
</div><!-- End demo --> </div><!-- End demo -->
<div class="demo-description"> <div class="demo-description">
<p>To arrange selectable items as a grid, give them identical dimensions and float them using CSS.</p> <p>To arrange selectable items as a grid, give them identical dimensions and float them using CSS.</p>
</div><!-- End demo-description --> </div><!-- End demo-description -->
</body> </body>
</html> </html>

View File

@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="utf-8">
<title>jQuery UI Selectable Demos</title> <title>jQuery UI Selectable Demos</title>
<link type="text/css" href="../demos.css" rel="stylesheet" /> <link rel="stylesheet" href="../demos.css">
</head> </head>
<body> <body>

View File

@ -1,31 +1,31 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="utf-8">
<title>jQuery UI Selectable - Serialize</title> <title>jQuery UI Selectable - Serialize</title>
<link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
<script type="text/javascript" src="../../jquery-1.4.2.js"></script> <script src="../../jquery-1.4.2.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.core.js"></script> <script src="../../ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script> <script src="../../ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script> <script src="../../ui/jquery.ui.mouse.js"></script>
<script type="text/javascript" src="../../ui/jquery.ui.selectable.js"></script> <script src="../../ui/jquery.ui.selectable.js"></script>
<link type="text/css" href="../demos.css" rel="stylesheet" /> <link rel="stylesheet" href="../demos.css">
<style type="text/css"> <style>
#feedback { font-size: 1.4em; } #feedback { font-size: 1.4em; }
#selectable .ui-selecting { background: #FECA40; } #selectable .ui-selecting { background: #FECA40; }
#selectable .ui-selected { background: #F39814; color: white; } #selectable .ui-selected { background: #F39814; color: white; }
#selectable { list-style-type: none; margin: 0; padding: 0; width: 60%; } #selectable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
#selectable li { margin: 3px; padding: 0.4em; font-size: 1.4em; height: 18px; } #selectable li { margin: 3px; padding: 0.4em; font-size: 1.4em; height: 18px; }
</style> </style>
<script type="text/javascript"> <script>
$(function() { $(function() {
$("#selectable").selectable({ $( "#selectable" ).selectable({
stop: function(){ stop: function() {
var result = $("#select-result").empty(); var result = $( "#select-result" ).empty();
$(".ui-selected", this).each(function(){ $( ".ui-selected", this ).each(function() {
var index = $("#selectable li").index(this); var index = $( "#selectable li" ).index( this );
result.append(" #" + (index + 1)); result.append( " #" + ( index + 1 ) );
}); });
} }
}); });
@ -33,6 +33,7 @@
</script> </script>
</head> </head>
<body> <body>
<div class="demo"> <div class="demo">
<p id="feedback"> <p id="feedback">
@ -50,10 +51,11 @@ You've selected: <span id="select-result">none</span>.
</div><!-- End demo --> </div><!-- End demo -->
<div class="demo-description"> <div class="demo-description">
<p>Write a function that fires on the <code>stop</code> event to collect the index values of selected items. Present values as feedback, or pass as a data string.</p> <p>Write a function that fires on the <code>stop</code> event to collect the index values of selected items. Present values as feedback, or pass as a data string.</p>
</div><!-- End demo-description --> </div><!-- End demo-description -->
</body> </body>
</html> </html>