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">
|
2010-01-07 03:19:50 +00:00
|
|
|
<title>jQuery UI Datepicker - Show week of the year</title>
|
2013-12-02 18:36:12 +00:00
|
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
2010-09-10 12:50:53 +00:00
|
|
|
<link rel="stylesheet" href="../demos.css">
|
2015-05-14 13:51:52 +00:00
|
|
|
<script src="../../external/requirejs/require.js"></script>
|
|
|
|
<script src="../bootstrap.js">
|
2010-09-10 12:50:53 +00:00
|
|
|
$( "#datepicker" ).datepicker({
|
|
|
|
showWeek: true,
|
|
|
|
firstDay: 1
|
|
|
|
});
|
2010-01-07 03:19:50 +00:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<p>Date: <input type="text" id="datepicker"></p>
|
|
|
|
|
2010-09-10 12:50:53 +00:00
|
|
|
<div class="demo-description">
|
2010-01-07 03:19:50 +00:00
|
|
|
<p>The datepicker can show the week of the year. The default calculation follows
|
|
|
|
the ISO 8601 definition: the week starts on Monday, the first week of the year
|
|
|
|
contains the first Thursday of the year. 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>
|