我使用DataAnnotation进行验证,我想在弹出窗口(对话框/警报)中显示错误消息(数据注释),而不是在视图中显示它.... 我已使用此链接实现了代码..
项目模板是Mobile 如果我错过了什么,请告诉我? http://forums.asp.net/t/1738076.aspx/1
Javascript: -
$('#Test').bind('invalid-form.validate', function (form, validator) {
alert('InsideTest');
var $list = $('#errorlist ul:first')
if ($list.length && validator.errorList.length) {
$list.empty();
$.each(validator.errorList, function () {
$("<li />").html(this.message).appendTo(list);
});
$list.dialog({
title: 'Please correct following errors:',
});
}
});
Forgot to add html...
About.cshtml: -
@model WRDSMobile.Models.Test
<div id="errorlist" style="display:none"><ul></ul></div>
@using (Html.BeginForm(null, null, FormMethod.Post, new { name = "Test", id = "Test" }))
{
@Html.ValidationSummary(true)
<fieldset>
<legend>Test</legend>
<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>
<div class="editor-label">
@Html.LabelFor(model => model.Age)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Age)
@Html.ValidationMessageFor(model => model.Age)
</div>
<input type="submit" value="Create" />
</fieldset>
}
答案 0 :(得分:1)
我不确定我是否理解你的问题,但你可以向你的控制器发送帖子并返回局部视图。然后将局部视图加载到html元素中,然后在对话框中弹出它。
[HttpPost]
public ActionResult validate(string firstName,string lastName){
//logic here for validation
return PartialView();
}
$.ajax({
type: "POST",
data: {firstName: nameVal, lastName: lastNameVal },
url: "/myController/validate",
dataType: "html",
success: function (data) {
if (data) {
var dialog = $('<div></div>');
dialog.html(data);
dialog.dialog({
resizable: false,
modal: true,
overflow: false,
maxWidth: 1200,
maxHeight: 600,
width: 1200,
height: 600,
border: 0,
buttons: {
"Cancel": function () { //cancel
$(this).dialog("close");
}
}
});
}
else {
alert("error");
}
}
});
答案 1 :(得分:1)
在CSS / JS下面添加referance jquery-ui.css,jquery-1.8.2.min.js,jquery-ui-1.8.24.min.js,jquery.validate.min.js, jquery.validate.unobtrusive.min.js 强>
$(document).ready(function () {
$('#Test').bind('invalid-form.validate', function (form, validator) {
var $list = $('<ul />')
if (validator.errorList.length) {
$.each(validator.errorList, function (i, entity) {
$("<li />").html(entity.message).appendTo($list);
});
msgbox('Please correct following errors:', $('<div />').append($list));
return false;
}
});
});
function msgbox(_title, _messageHtml) {
$('<div></div>').appendTo('body')
.html(_messageHtml)
.dialog({
modal: true, title: _title, zIndex: 10000, autoOpen: true,
width: 'auto', resizable: false,
buttons: {
Ok: function () {
// $(obj).removeAttr('onclick');
// $(obj).parents('.Parent').remove();
$(this).dialog("close");
}
},
close: function (event, ui) {
$(this).remove();
}
});
};
答案 2 :(得分:0)
public static void method(此ModelStateDictionary modelState)
{
StringBuilder errors = new StringBuilder();
try
{
foreach (ModelState model_State in modelState.Values)
foreach (ModelError error in model_State.Errors)
errors.AppendLine(error.ErrorMessage.ToString());
if (errors.Length > 1)
throw new Exception();
}
catch (Exception ex)
{
throw new // your validation helper
}
}
在ajax sucess false open jquery对话框中捕获此错误,此错误消息 注意:使用mvc错误处理程序,它将使用ajax success = false
发送错误消息