2009-03-14 14:28:10 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>jQuery UI Datepicker - Display multiple months</title>
|
2010-02-16 01:38:23 +00:00
|
|
|
<link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" />
|
2010-02-16 02:39:57 +00:00
|
|
|
<script type="text/javascript" src="../../jquery-1.4.2.js"></script>
|
2009-09-17 10:39:12 +00:00
|
|
|
<script type="text/javascript" src="../../ui/jquery.ui.core.js"></script>
|
2009-12-16 22:20:18 +00:00
|
|
|
<script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script>
|
2009-09-17 10:39:12 +00:00
|
|
|
<script type="text/javascript" src="../../ui/jquery.ui.datepicker.js"></script>
|
2009-03-14 14:28:10 +00:00
|
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
|
|
|
var dates = $('#from, #to').datepicker({
|
|
|
|
defaultDate: "+1w",
|
|
|
|
changeMonth: true,
|
|
|
|
numberOfMonths: 3,
|
|
|
|
onSelect: function(selectedDate) {
|
|
|
|
var option = this.id == "from" ? "minDate" : "maxDate";
|
2009-03-15 14:32:21 +00:00
|
|
|
var instance = $(this).data("datepicker");
|
|
|
|
var date = $.datepicker.parseDate(instance.settings.dateFormat || $.datepicker._defaults.dateFormat, selectedDate, instance.settings);
|
|
|
|
dates.not(this).datepicker("option", option, date);
|
2009-03-14 14:28:10 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="demo">
|
|
|
|
|
|
|
|
<label for="from">From</label>
|
|
|
|
<input type="text" id="from" name="from"/>
|
|
|
|
<label for="to">to</label>
|
|
|
|
<input type="text" id="to" name="to"/>
|
|
|
|
|
|
|
|
</div><!-- End demo -->
|
|
|
|
|
|
|
|
<div class="demo-description">
|
|
|
|
|
|
|
|
<p>Select the date range to search for.</p>
|
|
|
|
|
|
|
|
</div><!-- End demo-description -->
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|