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">
|
2015-09-30 13:11:22 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2011-08-07 16:59:50 +00:00
|
|
|
<title>jQuery UI Spinner - Decimal</title>
|
2013-12-02 18:36:12 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
2011-08-07 16:59:50 +00:00
|
|
|
<link rel="stylesheet" href="../demos.css">
|
2015-07-01 03:34:08 +00:00
|
|
|
<script src="../../external/requirejs/require.js"></script>
|
|
|
|
<script src="../bootstrap.js" data-modules="external/globalize/globalize external/globalize/globalize.culture.de-DE external/globalize/globalize.culture.ja-JP external/jquery-mousewheel/jquery.mousewheel">
|
2011-08-07 16:59:50 +00:00
|
|
|
$( "#spinner" ).spinner({
|
2011-08-07 15:34:28 +00:00
|
|
|
step: 0.01,
|
|
|
|
numberFormat: "n"
|
2011-08-10 12:55:16 +00:00
|
|
|
});
|
2011-08-07 16:59:50 +00:00
|
|
|
|
2015-05-14 02:01:44 +00:00
|
|
|
$( "#culture" ).on( "change", function() {
|
2011-08-07 16:59:50 +00:00
|
|
|
var current = $( "#spinner" ).spinner( "value" );
|
2011-08-10 12:55:16 +00:00
|
|
|
Globalize.culture( $(this).val() );
|
2011-08-07 16:59:50 +00:00
|
|
|
$( "#spinner" ).spinner( "value", current );
|
|
|
|
});
|
2011-08-07 15:34:28 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<label for="spinner">Decimal spinner:</label>
|
2011-08-07 16:59:50 +00:00
|
|
|
<input id="spinner" name="spinner" value="5.06">
|
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>
|
|
|
|
<option value="ja-JP">Japanese</option>
|
|
|
|
</select>
|
|
|
|
</p>
|
2011-08-07 16:59:50 +00:00
|
|
|
|
2011-08-07 15:34:28 +00:00
|
|
|
<div class="demo-description">
|
|
|
|
<p>
|
|
|
|
Example of a decimal spinner. Step is set to 0.01.
|
2011-08-07 16:59:50 +00:00
|
|
|
<br>The code handling the culture change reads the current spinner value,
|
2011-08-07 15:34:28 +00:00
|
|
|
then changes the culture, then sets the value again, resulting in an updated
|
|
|
|
formatting, based on the new culture.
|
|
|
|
</p>
|
2012-09-10 15:33:46 +00:00
|
|
|
</div>
|
2011-08-07 15:34:28 +00:00
|
|
|
</body>
|
|
|
|
</html>
|