datepicker
datepicker
I've two problems
first, these are the js and css that are available to my page:
smoothness/jquery-ui-1.8rc3.custom.css
js/jquery-1.4.2.min.js
js/jquery-ui-1.8rc3.custom.min.js
datepicker is defined thusly:
$("#datepicker").datepicker({
minDate: new Date(),
onClose: function(dateText, inst) {},
closeText: "Close",
showButtonPanel: true
});
1. how do I get the help button to show?
2. I would like the datepicker to popup and float just near the input field;
but to place <div type="text" id="datepicker" ></div>
below the date input field is to, when it is selected, push all other fields down
to make room for the datepicker.
so, how do get the datepicker to show near the date input field without distorting the rest of the form?
any assistance would be greatly appreciated
b