DayPilot 日历根本不会显示

DayPilot calendar won't show at all

我正在尝试实现一个日历,它只显示已经完成的预订,并且在数据库的 table 中。

完成本教程后: https://www.codeproject.com/Articles/404647/AJAX-Event-Calendar-Scheduler-for-ASP-NET-MVC-3-in

我有一个空白 space 日历应该在的地方,它似乎留下了一个很大的区域,所以我不确定它哪里出错了或者它是否没有渲染它或其他什么。我没有错误,也看不出哪里出错了。

Gyazo Screenshot

这是我对压延机的看法:

@{
    ViewBag.Title = "Booking Calander";
}

<h2>All Bookings</h2>

<div id="dp">

    <script src="@Url.Content("~/Scripts/DayPilot/daypilot-all.min.js")" type="text/javascript"></script>

    @Html.DayPilotCalendar("dpc", new DayPilotCalendarConfig
    {
    BackendUrl = Url.Content("~/Home/BookingCalander"),
    })


</div>

这是我在控制器中的内容(它只是在家庭控制器中):

    public ActionResult BookingCalander()
    {
        return View();
    }

    public ActionResult Backend()
    {
        return new Dpc().CallBack(this);
    }

    public class Dpc : DayPilotCalendar
    {
        protected override void OnInit(InitArgs e)
        {
            var db = new ApplicationDbContext();
            Events = from ev in db.HallBookings select ev;

            DataIdField = "ActivityBookingId";
            DataTextField = "Activity" + " - " + "CustomerName";
            DataStartField = "BookingStartTime";
            DataEndField = "BookingEndTime";

            Update();
        }
    }

我已将名称space添加到Views/Web。配置:

      <namespaces>

        <add namespace="DayPilot.Web.Mvc"/>

      </namespaces>
    </pages>
  </system.web.webPages.razor>

BackendUrl 应指向 "Backend" 操作(顾名思义):

@Html.DayPilotCalendar("dpc", new DayPilotCalendarConfig
{
  BackendUrl = Url.Content("~/Home/Backend"),
})