I have a form that saves in two modes, a submit mode where all required fields are validated as such, and a 'Draft' mode where I ignore all required fields and submit the form, validating all other rules. I am using jquery 1.8.0 This code on the submit button used to work fine:
var settngs = $.data($('form'), 'validator').settings;
settngs.ignore = '[data-val-required]';
I then added the following code to toggle the required validation on some fields, depending on selections by the user. It seems to work correctly and removes required correctly, however the submit button code no longer works and insists on validating the remaining required fields...
function toggleRequired(targetname, state) {
var target = $('#' + targetname);
if (state) {
//if it's already there, we don't want to add it
if (target.attr('data-val-required') == undefined) {
//do we have the original validation message?
if (target.attr('reqMsg') !== undefined)
{
target.attr('data-val-required', target.attr('reqMsg'));
}
else
{
target.attr('data-val-required', targetname + " is required.");
}
target.attr('data-val', 'true');
//set the red required astrick flag on the field
$("span[for=" + targetname + "]").text("*");
}
}
else
{
//if we haven't set the backup copy of the validation message previously, then set it now.
if (target.attr('reqMsg') == undefined) {
target.attr('reqMsg', target.attr('data-val-required'));
}
target.removeAttr("data-val-required");
//target.removeAttr('data-val');
$("span[for=" + targetname + "]").empty();
}
//drop the pre-parsed validation rules and reparse the form
$("form").removeData("validator");
$("form").removeData("unobtrusiveValidation");
$.validator.unobtrusive.parse("form");
}