I'm trying to validate a form in a Partal View using the DataAnnotations.
The problem is when I check if the form is valid in the javascript, it always returns true, even if the form doesn't meet the requirements.
This is the line who always returns true: var valid = $("#create-language-form").valid();
In my model I got this:
[Required(ErrorMessage="Please enter a name")]
public string Name { get; set; }
In my view I got this:
@using(Html.BeginForm(null, null, FormMethod.Post, new { id = "create-language-form" }))
{
<div class="editor-label">
@Html.LabelFor(model => model.Name)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Name)
@Html.ValidationMessageFor(model => model.Name)
</div>
}
In my javascript I got this:
$("#create-language-dialog").dialog({
modal: true,
open: function (event, ui) {
$('#create-language-dialog').load("/Languages/CreatePartial", { id: objectid });
},
buttons: {
"Save": function () {
var valid = $("#create-language-form").valid();
if (valid) {
//do stuff
}
}
}
});
What might be wrong? Anything I miss to make the MVC validation work in a partial view?
jquery.validate.unobtrusive.jsin your layout? – Jon Sep 22 '11 at 10:09