私はオーチャード プロジェクトに取り組んでおり、そこで ajax コードを動作させようとしています。
ビューは次のとおりです。
@model Ignite.Events.ViewModels.EventListPartViewModel
@{
Script.Require("jQuery");
Script.Include("EventList.js").AtLocation(Orchard.UI.Resources.ResourceLocation.Foot);
Script.Include("fullcalendar.js").AtLocation(Orchard.UI.Resources.ResourceLocation.Foot);
Script.Include("EventCalendar.js").AtLocation(Orchard.UI.Resources.ResourceLocation.Foot);
Script.Include("jquery.unobtrusive-ajax.js").AtLocation(Orchard.UI.Resources.ResourceLocation.Foot);
Style.Include("fullcalendar.css").AtLocation(Orchard.UI.Resources.ResourceLocation.Foot);
}
@using (Ajax.BeginForm("GetEventListItems", "Events", new { area="Ignite.Events", month = 4, year = 2013 }, new AjaxOptions { UpdateTargetId = "event-list", HttpMethod = "GET", InsertionMode = InsertionMode.Replace}, new { id = "ajaxForm" }))
{
@Html.AntiForgeryToken();
<input type="submit" value="Get Next" />
}
<table id="event-list" class="event-list">
@Html.Partial("_EventList", Model.Events)
</table>
<div id="calendar" class="clear"></div>
部分ビューを返すコントローラーは次のとおりです。
[ValidateAntiForgeryToken]
public PartialViewResult GetEventListItems(int? month, int? year)
{
if (month == null || year == null)
{
month = DateTime.Now.Month;
year = DateTime.Now.Year;
}
var result = _eventListDataService.GetEventListItems((int) month, (int) year);
return PartialView("_EventList", result);
}
部分ビューがレンダリングされた完全なビューではなく、常に部分ビューのみを取得するのはなぜだろうか。
ありがとうございました、
ヤクブ