jqueryを使用したボタンのモーダルポップアップが必要です。アクションリンクのモーダルポップアップを使用しましたが、ボタンのみを使用する必要があります。
アクションリンクに使用したjquery:
<%: Html.ActionLink("Create", "Create_By_SupAdmin", null, new { @class = "openDialog",
data_dialog_id = "newPostDialog", data_dialog_title = "Create New Profile" }) %>
は:
$(document).ready(function () {
$('.openDialog').live('click', function (e) {
e.preventDefault();
$('<div></div>')
.addClass('dialog')
.attr('id', $(this)
.attr('data-dialog-id'))
.appendTo('body')
.dialog({
title: $(this).attr('data-dialog-title'),
close: function () {
$(this).remove()
window.location.reload()
},
modal: true,
width: 500
})
.load(this.href);
});
});
問題
これと同じ動作をボタンに適用する必要があります。