I have a dynamic form that can be cloned, but the Datepicker Custom Range function limits every clone's end date from the first start date element.
I am using the SheepIt! plugin to clone my form elements.
Working example: http://jsfiddle.net/YWdV7/15/
*Note: add/delete functions not working in fiddle, but example of date range limits as previously described
Initial function for first date fields and clone function:
<script type="text/javascript">
$(document).ready(function() {
var container = $('#container').sheepIt(
{
separator: '',
allowRemoveLast: true,
allowRemoveCurrent: false,
allowRemoveAll: false,
allowAdd: true,
allowAddN: false,
maxFormsCount: 10,
minFormsCount: 0,
iniFormsCount: 1
}
);
});
$(function() {
$( ".date" ).datepicker({
showOn: "both",
buttonImage: "../../media/icons/calendar.png",
changeMonth: true,
changeYear: true,
yearRange: '2011:2050',
beforeShow: customRange
});
});
function customRange(input) {
if ($(input).hasClass('end_date')) {
var minDate = new Date($('.start_date').val());
minDate.setDate(minDate.getDate() + 1)
return {
minDate: minDate
};
}
};
</script>
Function to re-initiate datepicker when clone button is pressed:
<script type="text/javascript">
$('#container_add').live('click', function() {
$('.date').datepicker({
showOn: "both",
buttonImage: "../../media/icons/calendar.png",
changeMonth: true,
changeYear: true,
yearRange: '2011:2050',
beforeShow: customRange
})
function customRange(input) {
if ($(input).hasClass('end_date')) {
var minDate = new Date($('.start_date').val());
minDate.setDate(minDate.getDate() + 1)
return {
minDate: minDate
};
}
};
});
</script>