【发布时间】:2015-09-10 12:53:11
【问题描述】:
我想在编辑过去的重复事件时跳过 KendoUI 调度程序中的“编辑重复出现”对话框(“编辑系列”和“编辑发生”的内容选项),在其他情况下不应跳过“编辑重复出现”对话框。
示例代码:
editable: function(e)
{
if(e.conditionisTrue)
{
editRecurringMode: "dialog"
}
else
{
editRecurringMode: "occurrence",
},
template: kendo.template($("#myCustomEditorTemplate").html())
}
代替:
editable:
{
editRecurringMode: "dialog",
template: kendo.template($("#myCustomEditorTemplate").html())
}
【问题讨论】:
-
好的,我已经解决了这个由 kendo.all.min.js 更改的问题。这是对还是错我不知道,但我已经解决了我的问题。在新版本 kedno.all.min.js在editRecurringMode(e)中添加功能,我已经像这样传递参数
标签: angularjs kendo-ui kendo-asp.net-mvc kendo-scheduler