diff options
Diffstat (limited to 'demos/functional/templates/ui.datepicker.dlg.html')
-rw-r--r-- | demos/functional/templates/ui.datepicker.dlg.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/demos/functional/templates/ui.datepicker.dlg.html b/demos/functional/templates/ui.datepicker.dlg.html new file mode 100644 index 000000000..cf30239d0 --- /dev/null +++ b/demos/functional/templates/ui.datepicker.dlg.html @@ -0,0 +1,6 @@ +<input type="text" size="10" value="" id="dialog" readonly="readonly"/> <button id="dialogButton">Open dialog</button>
+<script type="text/javascript">
+function setDateFromDialog(date) {
+ $('#dialog').val(date);
+}
+</script>
\ No newline at end of file |