jquery-ui/demos/spinner/time.html

76 lines
1.9 KiB
HTML
Raw Normal View History

2011-08-07 16:59:50 +00:00
<!doctype html>
2011-08-07 15:34:28 +00:00
<html lang="en">
<head>
<meta charset="utf-8">
2011-08-07 16:59:50 +00:00
<title>jQuery UI Spinner - Time</title>
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
<script src="../../jquery-1.6.2.js"></script>
<script src="../../external/jquery.mousewheel-3.0.4.js"></script>
<script src="../../external/jquery.global.js"></script>
<script src="../../external/jquery.global.de-DE.js"></script>
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.button.js"></script>
<script src="../../ui/jquery.ui.spinner.js"></script>
<link rel="stylesheet" href="../demos.css">
<script>
$.widget( "ui.timespinner", $.ui.spinner, {
2011-08-07 15:34:28 +00:00
options: {
// seconds
step: 60 * 1000,
// hours
page: 60
},
2011-08-07 16:59:50 +00:00
_parse: function( value ) {
if ( typeof value === "string" ) {
return +$.global.parseDate( value );
2011-08-07 15:34:28 +00:00
}
return value;
},
2011-08-07 16:59:50 +00:00
2011-08-07 15:34:28 +00:00
_format: function() {
2011-08-07 16:59:50 +00:00
this.element.val( $.global.format( new Date(this.options.value), "t" ) );
2011-08-07 15:34:28 +00:00
}
2011-08-07 16:59:50 +00:00
});
2011-08-07 15:34:28 +00:00
$(function() {
2011-08-07 16:59:50 +00:00
$( "#spinner" ).timespinner();
$( "#culture" ).change(function() {
var current = $( "#spinner" ).timespinner( "value" );
$.global.preferCulture( $(this).val() );
$( "#spinner" ).timespinner( "value", current );
2011-08-07 15:34:28 +00:00
});
});
</script>
</head>
<body>
<div class="demo">
<p>
<label for="spinner">Time spinner:</label>
2011-08-07 16:59:50 +00:00
<input id="spinner" name="spinner" value="08:30 PM">
2011-08-07 15:34:28 +00:00
</p>
<p>
<label for="culture">Select a culture to use for formatting:</label>
<select id="culture">
<option value="en-EN" selected="selected">English</option>
<option value="de-DE">German</option>
</select>
</p>
2011-08-07 16:59:50 +00:00
</div><!-- End demo -->
2011-08-07 15:34:28 +00:00
<div class="demo-description">
<p>
A custom widget extending spinner. Use the Globalization plugin to parse and output
a timestamp, with custom step and page options. Cursor up/down spins minutes, page up/down
spins hours.
</p>
2011-08-07 16:59:50 +00:00
</div><!-- End demo-description -->
2011-08-07 15:34:28 +00:00
</body>
</html>