扩展功能完整列表
dhtmlxScheduler 提供多种扩展功能,以增强默认功能。
要启用扩展,请通过 scheduler.plugins 方法激活。
从 v6.0 开始,扩展代码文件已从 ext 文件夹中移除,并合并进 dhtmlxscheduler.js 文件。
如果你使用的是 dhtmlxScheduler 5.3 或更早版本,请参考 迁移指南。
Active Links
在"月视图"和"周视图"中,将日期数字显示为可点击链接,点击后可打开所选视图中的对应日期。
scheduler.plugins({
active_links: true
});
相关资源
文章:月视图
API: active_link_view
Agenda View
这是 Agenda 视图的代码文件。
scheduler.plugins({
agenda_view: true
});
相关资源
文章:아젠다 뷰
All Timed
将多天事件以与单天事件相同的样式显示。
scheduler.plugins({
all_timed: true
});
相关资源
API: all_timed
Displaying multi-day events in the regular way
Collision
处理在同一时间段内发生的多个事件。
scheduler.plugins({
collision: true
});
相关资源
Controlling the number of events in a time slot
Container Autoresize
自动调整调度器容器大小以适应内容。
scheduler.plugins({
container_autoresize: true
});
相关资源
文章:dhtmlxScheduler를 순수 JS/HTML에서 사용하기
API: container_autoresize
Autoresizing the scheduler container
Cookie
使用 cookie 存储当前调度器状态(模式和日期)。
scheduler.plugins({
cookie: true
});
相关资源
Daytimeline
此扩展仅在 PRO 版本中提供
为时间线视图提供 "Days" 模式。
scheduler.plugins({
daytimeline: true
});
相关资源
文章:타임라인 뷰
Drag-n-Drop zwischen Schedulern
此扩展仅在 Scheduler PRO 版本(Commercial(自 2021 年 10 月 6 日起)、Enterprise 和 Ultimate 许可证)中提供。
允许在多个调度器之间拖放事件,实现事件从一个调度器移动到另一个调度器。
scheduler.plugins({
drag_between: true
});
相关资源
文章:调度器之间的拖放
Editors
包含 lightbox 中使用的 radio、combo、checkbox 控件的代码。
scheduler.plugins({
editors: true
});
相关资源
文章:Lightbox 컨트롤
Expand
在调度器右上角添加"展开"图标,点击可在原始大小和全屏之间切 换。
scheduler.plugins({
expand: true
});
相关资源
事件: onBeforeExpand, onBeforeCollapse, onExpand, onCollapse
Export service
启用在线导出服务。
scheduler.plugins({
export_api: true
});