mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
49 lines
1.5 KiB
HTML
49 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>jQuery UI Datepicker - Multiple Calendars Demo</title>
|
|
<link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
|
|
<script type="text/javascript" src="../../jquery-1.3pre.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.datepicker.js"></script>
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$('#datepicker').datepicker({
|
|
numberOfMonths: 3,
|
|
showButtonPanel: true
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="demo">
|
|
|
|
<p>Date: <input type="text" id="datepicker"></p>
|
|
|
|
</div><!-- End demo -->
|
|
|
|
<div class="demo-description">
|
|
|
|
<p>
|
|
This datepicker shows three months at a time by setting the <code>numberOfMonths</code> option to 3.
|
|
This can be set to any number that will fit within your layout.
|
|
The multiple calendars are used to make it easier to visually scan across months and make a selection.
|
|
</p>
|
|
|
|
<div style="padding: 0pt 0.7em; margin-top: 20px;" class="ui-state-highlight ui-corner-all">
|
|
<p>
|
|
<span style="float: left; margin-right: 0.3em;" class="ui-icon ui-icon-info"></span>
|
|
<strong>Note:</strong>
|
|
This is not a date range picker.
|
|
In a future release, a custom date range plugin will be added.
|
|
For users that want to use the old date range picker built into the datepicker, they must use the previous version of this plugin (v1.5.3).
|
|
</p>
|
|
</div>
|
|
|
|
</div><!-- End demo-description -->
|
|
|
|
</body>
|
|
</html>
|