The following JQuery line lets me get passed validation but the serverside raises an error.
$(document).ready(function () {
$("#save").click(function () {
$("#WizForm").validate({
onsubmit: false
});
});
How do I set the ModelState to be successful and allow me to continue to save my data as a draft entry? Right now I get the following error. Should I remove the rules? Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.