jquery-ui/demos/datepicker/icon-trigger.html

48 lines
1.5 KiB
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!doctype html>
2009-01-02 03:56:06 +00:00
<html lang="en">
<head>
2010-09-10 12:50:53 +00:00
<meta charset="utf-8">
<title>jQuery UI Datepicker - Icon trigger</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/calendar.js"></script>
<script src="../../ui/button.js"></script>
<script src="../../ui/position.js"></script>
<script src="../../ui/datepicker.js"></script>
2010-09-10 12:50:53 +00:00
<link rel="stylesheet" href="../demos.css">
<script>
2009-01-02 03:56:06 +00:00
$(function() {
2014-04-26 12:05:56 +00:00
var allowOpen = false,
datepicker = $( "#datepicker" ).datepicker({
beforeOpen: function() {
return allowOpen;
},
open: function() {
allowOpen = false;
}
});
$( "<img src='images/calendar.gif' alt='Open Datepicker'>")
.insertAfter( datepicker )
.click( function() {
allowOpen = true;
datepicker.focus();
});
2009-01-02 03:56:06 +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">
<p>Click the icon next to the input field to show the datepicker. Set the datepicker to open on focus (default behavior), on icon click, or both.</p>
2012-09-10 15:33:46 +00:00
</div>
2009-01-02 03:56:06 +00:00
</body>
</html>