mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
9ec69ccb73
Use the `eachDay` option in the other-months demo. Fix handling of `extraClasses` property, split on space.
41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>jQuery UI Datepicker - Dates in other months</title>
|
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
|
<script src="../../external/jquery/jquery.js"></script>
|
|
<script src="../../external/globalize/globalize.js"></script>
|
|
<script src="../../external/date.js"></script>
|
|
<script src="../../external/localization.js"></script>
|
|
<script src="../../ui/core.js"></script>
|
|
<script src="../../ui/widget.js"></script>
|
|
<script src="../../ui/button.js"></script>
|
|
<script src="../../ui/position.js"></script>
|
|
<script src="../../ui/datepicker.js"></script>
|
|
<link rel="stylesheet" href="../demos.css">
|
|
<script>
|
|
$(function() {
|
|
$( "#datepicker" ).datepicker({
|
|
eachDay: function( day ) {
|
|
if ( day.lead ) {
|
|
day.render = true;
|
|
day.selectable = true;
|
|
day.extraClasses = "ui-priority-secondary";
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<p>Date: <input type="text" id="datepicker"></p>
|
|
|
|
<div class="demo-description">
|
|
<p>The datepicker can show dates that come from other than the main month
|
|
being displayed. These other dates can also be made selectable.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|