gdu*_*ubs 8 asp.net-mvc jquery modal-dialog jquery-dialog
好的,所以我想弄清楚如何根据这篇文章的建议使用控制器为我的页面正确调用模态弹出窗口
并且有点使用这个:
我有一个有下拉列表的视图,如果用户找不到他/她正在寻找的项目/值,他可以建议一个值(建议新值链接),该值应该调用控制器并返回一个弹出页面有几个领域.
这是视图上的对象:
<script type="text/javascript">
loadpopup = function ()
{
window.showModalDialog(‘/NewValue/New? , "loadPopUp", ‘width=100,height=100?);
}
</script>
<%: Html.DropDownList(model => model.ValueId, new selectlist........... %>
<%: Html.ActionLink("Suggest Value", "New", "NewValue", null, new { onclick = 'loadpopup()') %>
Run Code Online (Sandbox Code Playgroud)
我打算用来返回页面的控制器:
public class NewValueController : Controller{
public Actionresult New(){
return View();
}
}
Run Code Online (Sandbox Code Playgroud)
现在我被卡住了.我想返回一个页面,我可以格式化它,我必须返回一个字符串吗?我不能返回一个aspx(我使用),因为格式化会更容易吗?
关于我应该去哪个方向的任何建议都非常感谢.
谢谢!
Dar*_*rov 17
您可以使用jquery UI对话框来显示弹出窗口.我们这里有一个小设置.
我们将有一个主窗体的视图模型:
public class MyViewModel
{
public string ValueId { get; set; }
public IEnumerable<SelectListItem> Values
{
get
{
return new[]
{
new SelectListItem { Value = "1", Text = "item 1" },
new SelectListItem { Value = "2", Text = "item 2" },
new SelectListItem { Value = "3", Text = "item 3" },
};
}
}
public string NewValue { get; set; }
}
Run Code Online (Sandbox Code Playgroud)
控制器:
public class HomeController : Controller
{
public ActionResult Index()
{
return View(new MyViewModel());
}
[HttpPost]
public ActionResult Index(MyViewModel model)
{
return Content("thanks for submitting");
}
}
Run Code Online (Sandbox Code Playgroud)
和一个视图(~/Views/Home/Index.aspx):
<%@ Page
Language="C#"
MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.Mvc.ViewPage<AppName.Models.MyViewModel>"
%>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<% using (Html.BeginForm()) { %>
<%= Html.DropDownListFor(x => x.ValueId, Model.Values) %>
<br/>
<%= Html.EditorFor(x => x.NewValue) %>
<%= Html.ActionLink("Suggest Value", "New", "NewValue", null, new { id = "new-value-link" }) %>
<button type="submit">OK</button>
<% } %>
<div id="dialog"></div>
</asp:Content>
Run Code Online (Sandbox Code Playgroud)
然后我们可以照顾弹出窗口.我们为它定义一个视图模型:
public class NewValueViewModel
{
public string Foo { get; set; }
public string Bar { get; set; }
}
Run Code Online (Sandbox Code Playgroud)
控制器:
public class NewValueController : Controller
{
public ActionResult New()
{
return PartialView(new NewValueViewModel());
}
[HttpPost]
public ActionResult New(NewValueViewModel model)
{
var newValue = string.Format("{0} - {1}", model.Foo, model.Bar);
return Json(new { newValue = newValue });
}
}
Run Code Online (Sandbox Code Playgroud)
和相应的局部视图(~/Views/NewValue/New.ascx):
<%@ Control
Language="C#"
Inherits="System.Web.Mvc.ViewUserControl<AppName.Models.NewValueViewModel>"
%>
<% using (Html.BeginForm(null, null, FormMethod.Post, new { id = "new-value-form" })) { %>
<%= Html.EditorFor(x => x.Foo) %>
<%= Html.EditorFor(x => x.Bar) %>
<button type="submit">OK</button>
<% } %>
Run Code Online (Sandbox Code Playgroud)
现在剩下的就是编写一些javascript来连接所有内容.我们包括jquery和jquery ui:
<script src="<%: Url.Content("~/Scripts/jquery-1.5.1.min.js") %>" type="text/javascript"></script>
<script src="<%: Url.Content("~/Scripts/jquery-ui-1.8.11.js") %>" type="text/javascript"></script>
Run Code Online (Sandbox Code Playgroud)
和一个包含我们代码的自定义javascript文件:
$(function () {
$('#new-value-link').click(function () {
var href = this.href;
$('#dialog').dialog({
modal: true,
open: function (event, ui) {
$(this).load(href, function (result) {
$('#new-value-form').submit(function () {
$.ajax({
url: this.action,
type: this.method,
data: $(this).serialize(),
success: function (json) {
$('#dialog').dialog('close');
$('#NewValue').val(json.newValue);
}
});
return false;
});
});
}
});
return false;
});
});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
64559 次 |
| 最近记录: |