gpt4 book ai didi

asp.net-mvc - 使用 Kendo 调度程序的问题

转载 作者:行者123 更新时间:2023-12-05 01:02:52 34 4
gpt4 key购买 nike

我使用 Kendo 控件已经有一段时间了,它们在 HTML/Razor 网页中的包含相当简单:以下是一些工作示例:

@(Html.Kendo().Grid<ProjectName.Models.MyModel>()
...

@(Html.Kendo().DropDownList()
...

@(Html.Kendo().Button()
...

我想开始使用 Kendo Scheduler在他们的例子中,他们有这个:

@(Html.Kendo().Scheduler<Kendo.Mvc.Examples.Models.Scheduler.TaskViewModel>()

所以我尝试了这个:

@(Html.Kendo().Scheduler<ProjectName.Models.MyModel>()

但它在编辑器中显示此错误:

namespace ProjectName.Models.MyModel

Error:
The type 'ProjectName.Models.MyModel' cannot be used as type parameter 'T' in the generic type or method 'Kendo.Mvc.UI.Fluent.WidgetFactory.Scheduler()'. There is no implicit reference conversion from 'ProjectName.Models.MyModel' to 'Kendo.Mvc.UI.ISchedulerEvent'

我做错了什么?

最佳答案

您绑定(bind)到调度程序的模型必须继承自 "ISchedulerEvent" 接口(interface)。此接口(interface)存在于“Kendo.Mvc.UI”命名空间中。例如

 // ViewModel required for managing appointments
public class SchedulerViewModel : ISchedulerEvent
{
public string Title { get; set; }
public string Description { get; set; }
public bool IsAllDay { get; set; }
public DateTime Start { get; set; }
public DateTime End { get; set; }
public string StartTimezone { get; set; }
public string EndTimezone { get; set; }
public string RecurrenceRule { get; set; }
public string RecurrenceException { get; set; }
//Add your own property here
}

希望这能解决错误。

关于asp.net-mvc - 使用 Kendo 调度程序的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27187009/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com