在我的索引视图中,我有一个创建和打开模板链接:
@Html.ActionLink("Create Template", "JsonCreate", "Template", new { id = "CreateTemplate" })
@Html.ActionLink("Open Template", "JsonOpen", "Template", new { id = "OpenTemplate" })
<script type="text/javascript">
$(function () {
$('#dialog').dialog({
autoOpen: false,
width: 300,
resizable: false,
title: 'Create Template',
hide: "fade",
show: "fade",
modal: true,
open: function(event, ui) {
$(this).load("@Url.Action("Create")");
},
buttons: {
"Save": function () {
var form = $('form', this);
$(form).submit();
},
"Close": function () {
$(this).dialog("close");
}
}
});
$('#OpenTemplate').click(function ()
{
$('#dialog').dialog('open');
return false;
});
$('#CreateTemplate').click(function ()
{
$('#dialog').dialog('open');
return false;
});
});
</script>
对于打开模板链接,我想要一个完全不同的对话框:
- 其他按钮
- 其他尺寸
- 其他头衔
- ETC...
我需要改变什么,我的打开模板链接可以使用相同的对话框 div“#dialog”打开它自己的对话框?