mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
42 lines
1.2 KiB
HTML
42 lines
1.2 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">
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
|
<link rel="stylesheet" href="../demos.css">
|
|
<script src="../../external/requirejs/require.js"></script>
|
|
<script src="../bootstrap.js" data-modules="external/localization">
|
|
var calendar = $( "#calendar" ),
|
|
select = $( "#locale" );
|
|
|
|
calendar.calendar({
|
|
locale: select.val()
|
|
});
|
|
|
|
select.change( function() {
|
|
calendar.calendar( "option", {
|
|
locale: select.val()
|
|
});
|
|
calendar.calendar( "valueAsDate", calendar.calendar( "valueAsDate" ) );
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="calendar"></div>
|
|
<select id="locale">
|
|
<option value="ar">Arabic</option>
|
|
<option value="de" selected>German</option>
|
|
<option value="en">English</option>
|
|
<option value="es">Spanish</option>
|
|
<option value="zh">Chinese Simplified</option>
|
|
</select>
|
|
|
|
<div class="demo-description">
|
|
<p>Localize the 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>
|