Я новичок в jquery плагине проверки, но я хотел бы знать, как мы проверяем массив полей ввода с помощью плагина проверки.
var index = $("#tbQual").children("tr").length;
var indexCell = "<td style='display:none'><input name='JobApplicantQualification.Index' type='hidden' value='" + index + "' /></td>";
var titleCell = "<td><input id='JobApplicantQualification_" + index + "__NmaeofQualification' name='JobApplicantQualification[" + index + "].NmaeofQualification' type='text' value='' /></td>";
var publishedCell = "<td><input id='JobApplicantQualification_" + index + "__University' name='JobApplicantQualification[" + index + "].University' type='text' value='' /></td>";
var FromDate = "<td><input class='sysdate' id='JobApplicantQualification_" + index + "__FromQDate' name='JobApplicantQualification[" + index + "].FromQDate' type='text' value='' /></td>";
var To = "<td><input class='sysdate' id='JobApplicantQualification_" + index + "__ToQDate' name='JobApplicantQualification[" + index + "].ToQDate' type='text' value='' /></td>";
var removeCell = "<td><input id='btnremBook' class='remqual' type='button' value='Remove' /></td>";
var newRow = "<tr id='trBook" + index + "'>" + indexCell + titleCell + publishedCell + FromDate + To + removeCell + "</tr>";
$("#tbQual").append(newRow);
Как я могу проверить JobApplicantQualification. как-то так
$('#btnsubmit').on('click', function() {
$('form').validate({
submitHandler: function(form) {
form.submit();
},
rules: {
'JobApplicantQualification[]': {
required: true
}
},
});
});
Я хочу, чтобы валидация распечатывалась, требуется одна квалификация