在 Kendo UI 调度程序中隐藏时间行
Hide time row in Kendo UI Scheduler
我用 Kendo UI 接手了一个项目,并尝试弄清楚如何从调度程序中删除时间行 (http://www.directupload.net/file/d/4027/icax4ca2_png.htm)。
我看过这部纪录片,但就是无法删除它。
它不是 allDaySlot。
这真让我烦恼,我找不到要更改的部分。代码如下所示:
$(document).ready(function() {
var schedulerSelectState = null;
var now = new Date();
window.schedulerEinsaetzeDisponiert = $("#scheduler").kendoScheduler({
footer: false,
date: new Date(),
// height: 400,
eventHeight: 30,
majorTick: 1440,
views: [
{
type: "timelineWeek",
title: "Wochenansicht"
},
{
type: "timelineMonth",
allDaySlot: false,
title: "Monatsansicht",
selected: true
}
],
timezone: "Europe/Berlin",
selectable: false,
谢谢你帮助我!
为什么不直接使用 CSS 来做呢?像这样:
#scheduler .k-scheduler-header-wrap .k-scheduler-table > tbody > tr:nth-child(2),
#scheduler .k-scheduler-layout > tbody > tr:first-child > td > .k-scheduler-times .k-scheduler-table > tbody > tr:nth-child(2) {
display: none;
}
我用 Kendo UI 接手了一个项目,并尝试弄清楚如何从调度程序中删除时间行 (http://www.directupload.net/file/d/4027/icax4ca2_png.htm)。
我看过这部纪录片,但就是无法删除它。 它不是 allDaySlot。
这真让我烦恼,我找不到要更改的部分。代码如下所示:
$(document).ready(function() {
var schedulerSelectState = null;
var now = new Date();
window.schedulerEinsaetzeDisponiert = $("#scheduler").kendoScheduler({
footer: false,
date: new Date(),
// height: 400,
eventHeight: 30,
majorTick: 1440,
views: [
{
type: "timelineWeek",
title: "Wochenansicht"
},
{
type: "timelineMonth",
allDaySlot: false,
title: "Monatsansicht",
selected: true
}
],
timezone: "Europe/Berlin",
selectable: false,
谢谢你帮助我!
为什么不直接使用 CSS 来做呢?像这样:
#scheduler .k-scheduler-header-wrap .k-scheduler-table > tbody > tr:nth-child(2),
#scheduler .k-scheduler-layout > tbody > tr:first-child > td > .k-scheduler-times .k-scheduler-table > tbody > tr:nth-child(2) {
display: none;
}