jquery-ui/demos/functional/templates/ui.datepicker.dlg.html
Keith Wood d165e454b4 Fixed 3107 Dialog example does not return false when clicked
Demonstrate inline disabled datepicker
Demonstrate big previous/next links
2008-07-23 12:39:48 +00:00

6 lines
246 B
HTML

<input type="text" size="10" value="" id="dialog" readonly="readonly"/> <button id="dialogButton" type="button">Open dialog</button>
<script type="text/javascript">
function setDateFromDialog(date) {
$("#dialog").val(date);
}
</script>