Kendo调度程序资源分组和插槽。 我有一个带有水平资源分组的kendo调度程序。如何查找所选插槽或单元的资源组。
答案 0 :(得分:1)
该组的索引可以通过
找到function scheduler_change(e) {
// the index of the group
var index = $("#scheduler").data('kendoScheduler').slotByElement(e.slots[0].element).groupIndex;
// from the resource array, resource[index] gives the required object
}