jQueryダイアログをポップアップしたいMVCビューがあります。ダイアログでビューをレンダリングしたいのですが、コントローラーのアクションにはパラメーターが必要です。ここに私が持っているものがあります:
$(document).ready(function () {
$dialog = $('<div></div>')
.dialog({
open: function(event, ui) {
$(this).load("@Url.Action("Edit", "Agenda", new {id = ???})"); //Line to fix
},
autoOpen: false
});
さらに下には、ダイアログを呼び出すこのコードがあります。I want id
to pass to the controller アクションはcalEvent.id
$('#calendar').fullCalendar({
eventClick: function (calEvent, jsEvent, view) {
$dialog.dialog('open');
}
});
質問は次のとおりです。パラメーターに渡すcalEvent
ようにコードをどのように適応させることができますか?id