I am using the Jquery datepicker plugin with this timepicker addon in two input boxes, one for the "From" date and the second with the "To" date.
When I set the first one, I want the second one to be one day after the date selected in the first,disabling all the dates earlier than the date selected in the "From" date
If the "To" date is selected first, then the "From" date is set to the day before the "To" date.
I have found some examples, but I don't know how to get the date with time.So,If I ,for example, select 13/12/2010 15:50 in the "From" date, the date in the "To" date is set to 14/12/2010 15:50 or at least to 14/12/2010 00:00.
EDITED***
I've just found this piece of code that works as I want , but without the timepicker addon.
$(function(){
$('#dateFrom').datepicker({
dateFormat: 'dd/mm/yy',
onSelect: function(dateText, inst) {
$('#dateTo').datepicker('option','minDate', new Date(inst.selectedYear, inst.selectedMonth, inst.selectedDay));
}
});
$('#dateTo').datepicker({
dateFormat: 'dd/mm/yy',
onSelect: function(dateText, inst) {
$('#dateFrom').datepicker('option','maxDate', new Date(inst.selectedYear, inst.selectedMonth, inst.selectedDay));
}
});
});
Based on the above code, would it be possible to adapt it ,so that I can use it with the timepicker addon?
Thanks beforehand
onSelectmethod is that it does not behave the same way with the datetimepicker plugin. Notice in your demo that you must click a day to close the widget. This is not the case with the datetimepicker, probably because of the slider for time. The fact that there is no reliable event that fires when the user selects a date (either clicks "done" on the plugin or clicks off of the widget) makes it hard to do it this way, at least with the research I've done. – Andrew Whitaker Dec 14 '10 at 21:38