Hi all
I'm stuck. Tried all the angles but i cant seem to get it working. I have 2 inline calendars. When i select a date from the dtFrm calendar it sets the date on the dtTo calendar as expected. I just cant seem to set the EndDate of the dtTo calendar.
Anyone manage to solve this one?
Thanks! Lance
using:jquery.datePicker.min-2.1.2.js
<script type="text/javascript">
$(function() {
$('.dtFrm').datePicker({ inline: true })
.bind(
'dateSelected',
function(e, selectedDate, $td) {
$('.dtTo').dpSetSelected(selectedDate.addDays(10).asString());//works
$('.dtTo').dpSetEndDate(selectedDate.addDays(11).asString());//doesnt work
}
);
$('.dtTo').datePicker({ inline: true });
});
</script>
<div class="dtFrm" style="float:left"></div>
<div class="dtTo" style="float:left"></div>