mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
510ba08cff
Add calendar widget by copying and renaming datepicker widget files. Remove datepicker functionality, options and methods from Calendar. Remove calendar functionality, options and methods from Datepicker. Adjust tests due to split and changed specification. Remove duplicated demo files and fix some demos. Simplify calendar generation, use CSS instead of inline styles. Fix destroy method. Make use of uniqueId method. Fix focus highlighting when month is changed. Add version property. Add common unit tests. Fix input keyboard handling.
42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<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>
|
|
<link rel="stylesheet" href="../demos.css">
|
|
<script>
|
|
$(function() {
|
|
var calendar = $( "#calendar" ).calendar(),
|
|
date = calendar.calendar( "valueAsDate" );
|
|
|
|
$( "#locale" ).change( function() {
|
|
Globalize.locale( $( this ).val() );
|
|
calendar.calendar( "valueAsDate", date );
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="calendar"></div>
|
|
<select id="locale">
|
|
<option value="de-DE" selected>German (Deutsch)</option>
|
|
<option value="en">English</option>
|
|
</select>
|
|
|
|
<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>
|
|
</div>
|
|
</body>
|
|
</html>
|