gpt4 book ai didi

php - Kendo ui/GANTT,关闭弹出窗口

转载 作者:行者123 更新时间:2023-11-29 18:11:47 24 4
gpt4 key购买 nike

伙计们,你们能帮我在双击任务时隐藏/禁用弹出框吗? http://demos.telerik.com/php-ui/gantt/index

我可以在下面添加->editable(false);:

// gantt
$gantt = new \Kendo\UI\Gantt('gantt');
$gantt->dataSource($tasks)
->dependencies($dependencies)
->height(650)
->addView(
'',
array('type' => 'week', 'selected' => false),
'month'
)
->addColumn($idColumn, $titleColumn, $startColumn, $endColumn)
->showWorkHours(false)
->showWorkDays(true)
->snap(false)
->editable(false);

但是我无法编辑任何内容。有什么线索吗?谢谢。

最佳答案

我没有看到任何直接禁用它的方法,但您可以使用 edit 方法进行解决,该方法根据 documentation 在双击时附加一个 js 事件。 。我想,如果你添加这样简单的东西,它应该可以工作:

function(e) {
e.preventDefault();
}

如果没有,您可以执行类似的操作来阻止事件触发。

关于php - Kendo ui/GANTT,关闭弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47325433/

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