jqModal 和 ASP.NET MVC
我想创建一个简单的表单来使用 jqModal 添加新产品。
View / Home / Index.aspx:
<script type="text/javascript">
$(document).ready(function () {
$('#addProductControlSection').jqm({ modal: true,
ajax: '<%: Url.Action("AddProduct", "Home") %>',
onHide: myAddClose
});
function myAddClose(hash) {
hash.w.fadeOut('1000', function () { hash.o.remove(); });
}
});
</script>
// rest of the code...
<a href="#" class="jqModal">Add product</a>
<div id="addProductControlSection" class="jqmWindow">
</div>
HomeController:
public ActionResult AddProduct()
{
return View();
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult AddProduct(Product product)
{
if(!ModelState.IsValid)
{
// how to show an error?
}
_productRepository.Save(product);
// how to display 'success' or something...
}
我不知道不知道如何实施验证。如果用户输入的 Product.Price 值不正确并单击“保存”按钮,我不想关闭表单。我想显示一条错误消息,类似于在普通视图上使用验证摘要时的错误消息。
谢谢!
I want to create a simple form for adding new products using jqModal.
View / Home / Index.aspx:
<script type="text/javascript">
$(document).ready(function () {
$('#addProductControlSection').jqm({ modal: true,
ajax: '<%: Url.Action("AddProduct", "Home") %>',
onHide: myAddClose
});
function myAddClose(hash) {
hash.w.fadeOut('1000', function () { hash.o.remove(); });
}
});
</script>
// rest of the code...
<a href="#" class="jqModal">Add product</a>
<div id="addProductControlSection" class="jqmWindow">
</div>
HomeController:
public ActionResult AddProduct()
{
return View();
}
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult AddProduct(Product product)
{
if(!ModelState.IsValid)
{
// how to show an error?
}
_productRepository.Save(product);
// how to display 'success' or something...
}
I don't know how to implement validation. If user enters incorrect value for the Product.Price and clicks Save button, I don't want to close the form. I would like to display an error message like the one when using Validation Summary on normal views.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 jQuery 验证插件 或使用 MVC 模型验证 自动生成JS。事实上,它处于模式对话框中应该不会对这些技术产生影响。
Have a look at the jQuery validation plugin or using MVC Model Validation to autogenerate the JS. The fact that it's in a modal dialog should have no effect on these techniques.