Вам необходимо применить правило проверки (dpDate
), как описано в этой статье :
jQuery(document).ready(function () {
$("form").validate({
rules: {
// EffectiveDate is the name of the input, not the id
// so make sure that the input is defined like this:
// <input type="text" id="EffectiveDate" name="EffectiveDate" />
EffectiveDate: {
required: true,
dpDate: true
}
}
});
var term = $("#TermDate").val();
$("#EffectiveDate").datepicker({
minDate: term
});
});
Чтобы это правило вступило в силу, необходимо добавить расширение jquery.ui.datepicker.validation.js
на свою страницу.