0

我正在尝试实现一个日历,它只是要显示已经进行的预订,并且在数据库的表格中。

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

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

Gyazo 截图

这是我对压延机的看法:

@{
    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();
        }
    }

我已将命名空间添加到 Views/Web.Config:

      <namespaces>

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

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

1 回答 1

0

BackendUrl 应该指向“Backend”操作(顾名思义):

@Html.DayPilotCalendar("dpc", new DayPilotCalendarConfig
{
  BackendUrl = Url.Content("~/Home/Backend"),
})
于 2017-05-15T18:24:20.617 回答