jquery-ui/demos/calendar/localization.html

42 lines
1.3 KiB
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!doctype html>
2008-12-30 04:16:51 +00:00
<html lang="en">
<head>
2010-09-10 12:50:53 +00:00
<meta charset="utf-8">
<title>jQuery UI Calendar - Localize calendar</title>
<link rel="stylesheet" href="../../themes/base/all.css">
<script src="../../external/jquery/jquery.js"></script>
<script src="../../external/globalize/globalize.js"></script>
<script src="../../external/date.js"></script>
<script src="../../external/localization.js"></script>
<script src="../../ui/core.js"></script>
<script src="../../ui/widget.js"></script>
<script src="../../ui/button.js"></script>
<script src="../../ui/calendar.js"></script>
<script src="../../ui/position.js"></script>
2010-09-10 12:50:53 +00:00
<link rel="stylesheet" href="../demos.css">
<script>
2008-12-30 04:16:51 +00:00
$(function() {
var calendar = $( "#calendar" ).calendar(),
date = calendar.calendar( "valueAsDate" );
$( "#locale" ).change( function() {
Globalize.locale( $( this ).val() );
calendar.calendar( "valueAsDate", date );
});
2008-12-30 04:16:51 +00:00
});
</script>
</head>
<body>
<div id="calendar"></div>
<select id="locale">
<option value="de-DE" selected>German (Deutsch)</option>
<option value="en">English</option>
</select>
2008-12-30 04:16:51 +00:00
2010-09-10 12:50:53 +00:00
<div class="demo-description">
<p>Localize the calendar calendar language and format (English / Western formatting is the default). The calendar includes built-in support for languages that read right-to-left, such as Arabic and Hebrew.</p>
2012-09-10 15:33:46 +00:00
</div>
2008-12-30 04:16:51 +00:00
</body>
</html>