jquery-ui/demos/calendar/min-max.html
Felix Nagel 3135e5bb37 Calendar: Use day of the month instead day of the week for range
There is no sense in use the day of the week as a base for min/max range.
2015-09-10 23:21:24 +02:00

29 lines
869 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Calendar - Restrict date range</title>
<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">
var now = new Date(),
dateMin = new Date( now.getFullYear(), now.getMonth(), now.getDate() + 1 ),
dateMax = new Date( now.getFullYear(), now.getMonth(), now.getDate() + 8 );
$( "#calendar" ).calendar({
min: dateMin,
max: dateMax
});
</script>
</head>
<body>
<div id="calendar"></div>
<div class="demo-description">
<p>Restrict the range of selectable dates with the <code>min</code> and <code>max</code> options. Set the beginning and end dates as actual dates (<code>new Date(2009, 1 - 1, 26)</code>).</p>
</div>
</body>
</html>