I have mvc attributes on fields that validate on submit. Although these attributes are on these fields, I want to override their validation if I click a SaveDraft button. Right now I try to disable validation of the field using jquery rules but the mvc attributes seem to override the rules. How can I make the MVC attributes ignore validation if I click a different button? Here is an example of what I want to do onClick but it does not work.
$(".btnsave").click(function () {
$('#WizForm').validate(
{
rules:
{
Title: false,
Description: false //dont validate this field onclick
},
}).Form();
});