2012-09-10 15:33:46 +00:00
|
|
|
<!doctype html>
|
2010-01-07 03:19:50 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2010-09-10 12:50:53 +00:00
|
|
|
<meta charset="utf-8">
|
2014-06-03 21:18:51 +00:00
|
|
|
<title>jQuery UI Calendar - Show week of the year</title>
|
2013-12-02 18:36:12 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
2014-06-10 11:55:45 +00:00
|
|
|
<script src="../../external/jquery/jquery.js"></script>
|
2013-08-30 12:27:19 +00:00
|
|
|
<script src="../../external/globalize/globalize.js"></script>
|
|
|
|
<script src="../../external/date.js"></script>
|
|
|
|
<script src="../../external/localization.js"></script>
|
2013-12-02 18:36:12 +00:00
|
|
|
<script src="../../ui/core.js"></script>
|
|
|
|
<script src="../../ui/widget.js"></script>
|
2013-08-30 12:27:19 +00:00
|
|
|
<script src="../../ui/button.js"></script>
|
2014-06-03 21:18:51 +00:00
|
|
|
<script src="../../ui/calendar.js"></script>
|
2013-08-30 12:27:19 +00:00
|
|
|
<script src="../../ui/position.js"></script>
|
2010-09-10 12:50:53 +00:00
|
|
|
<link rel="stylesheet" href="../demos.css">
|
|
|
|
<script>
|
2010-01-07 03:19:50 +00:00
|
|
|
$(function() {
|
2014-06-03 21:18:51 +00:00
|
|
|
$( "#calendar" ).calendar({
|
2013-11-30 12:22:17 +00:00
|
|
|
showWeek: true
|
2010-09-10 12:50:53 +00:00
|
|
|
});
|
2010-01-07 03:19:50 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2014-06-03 21:18:51 +00:00
|
|
|
<div id="calendar"></div>
|
2010-01-07 03:19:50 +00:00
|
|
|
|
2010-09-10 12:50:53 +00:00
|
|
|
<div class="demo-description">
|
2014-06-03 21:18:51 +00:00
|
|
|
<p>The calendar can show the week of the year. The calculation follows
|
2014-04-23 15:49:03 +00:00
|
|
|
<a href="http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table">Unicode CLDR specification</a>.
|
2013-11-30 12:22:17 +00:00
|
|
|
This means that some days from one year may be placed into weeks 'belonging' to another year.</p>
|
2012-09-10 15:33:46 +00:00
|
|
|
</div>
|
2010-01-07 03:19:50 +00:00
|
|
|
</body>
|
|
|
|
</html>
|