我在JQuery UI对话框中渲染部分视图。取自Loading a partial view in jquery.dialog的示例。当您传递部分视图模型时,关闭按钮不起作用...是否有人有解决方案让它关闭对话框? (当没有模型传递给局部视图时,它工作正常)。此外,任何人都可以解释为什么它在传递视图模型时不起作用?
查看:
<script type="text/javascript">
$(function () {
$('#dialog').dialog({
width: 400,
resizable: false,
title: 'hi there',
modal: true,
open: function(event, ui) {
//Load the CreateAlbumPartial action which will return
// the partial view _CreateAlbumPartial
$(this).load("@Url.Action("CreateAlbumPartial")");
},
buttons: {
"Close": function () {
$(this).dialog("close");
}
}
});
});
</script>
<div id="dialog" title="Create Album" style="overflow: hidden;"></div>
动作:
public ActionResult CreateAlbumPartial()
{
var applications = new List<string>{"bob", "john", "andrew"};
var selectList = applications.Select(x => new SelectListItem{Text = x,Value = x}).ToList();
var model = new TestModel{Applications = selectList};
return View("_CreateAlbumPartial", model);
}
ViewModel:
public class TestModel
{
public int SelectedApplicationId;
public IEnumerable<SelectListItem> Applications;
}
部分视图:
@model MvcApplication1.Models.TestModel
<div>
@Html.DropDownListFor(
x => x.SelectedApplicationId,
new SelectList(Model.Applications, "Value", "Text"),
"-- Select Application --",
new
{
id = "ApplicationsDropdownList",
data_url = Url.Action("ViewRolesForApplication", "Index")
}
)
</div>
答案 0 :(得分:1)
首先加载内容然后创建对话框
$(function () {
$.ajax({
url: "@Url.Action("CreateAlbumPartial")",
success:function(data){
$('#dialog').html(data).dialog({
width: 400,
resizable: false,
title: 'hi there',
modal: true,
buttons: {
"Close": function () {
$(this).dialog("close");
}
}
});
}
});
});