扩展功能完整列表
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
});
相关资源
文章:Export to PDF , Export to PNG
Grid View
此扩展仅在 PRO 版本中提供
Grid 视图的代码文件。
scheduler.plugins({
grid_view: true
});
相关资源
文章:Grid View
HTML Templates
允许使用 HTML 代码定义模板。
scheduler.plugins({
html_templates: true
});
相关资源
文章:模板
Specifying templates with HTML
Keyboard Navigation
启用键盘导航。
scheduler.plugins({
key_nav: true
});
相关资源
文章:키보드 내비게이션
Keyboard Navigation and WAI-ARIA - Flat Skin
Keyboard navigation in the scheduler
Legacy
激活已弃用 API 的支持。
scheduler.plugins({
legacy: true
});
相关资源
文章:Migration From Older Versions
Limit
提供阻止和高亮特定日期的选项。
scheduler.plugins({
limit: true
});
相关资源
Limiting dates for creating events
Map View
Map 视图的代码文件。
scheduler.plugins({
map_view: true
});
相关资源
文章:Map View
Mini Calendar (Date Picker)
添加迷你日历的插件。
scheduler.plugins({
minical: true
});
相关资源
Mini calendar in the scheduler header
Multisection
此扩展仅在 PRO 版本中提供
允许在时间线视图中为事件分配多个区段,或在单位视图中分配多个单位。
scheduler.plugins({
multisection: true
});
相关资源
文章:타임라인 뷰, Units View
API: multisection
Multisection events in Timeline and Units view
Multiselect
为 lightbox 添加 multiselect 控件的支持。
scheduler.plugins({
multiselect: true
});
相关资源
文章:Lightbox 컨트롤
Multiselect control in the lightbox
Multisource
支持从多个数据源加载数据。
scheduler.plugins({
multisource: true
});
相关资源
文章:데이터 불러오기
Loading data from multiple sources
Outerdrag
允许从外部 DHTMLX 组件(如 dhtmlxTree)拖动事件。
scheduler.plugins({
outerdrag: true
});
相关资源
PDF
支持导出为 PDF 文档。
Quick Info
显示包含事件详细信息的弹出窗口。
scheduler.plugins({
quick_info: true
});
相关资源
文章:Mobile Responsive Scheduler
Readonly
为 lightbox 和部分事件启用只读模式。
scheduler.plugins({
readonly: true
});
相关资源
文章:읽기 전용 모드
Recurring
添加对周期性事件的支持。
scheduler.plugins({
recurring: true
});
相关资源
文章:반복 이벤트
Recurring Legacy
为周期性事件提供旧版支持。
scheduler.plugins({
recurring_legacy: true
});
相关资源
Serialize
支持将数据序列化为 ICal、XML 和 JSON 格式。
scheduler.plugins({
serialize: true
});
相关资源
Timeline
此扩展仅在 PRO 版本中提供
时间线视图插件。
scheduler.plugins({
timeline: true
});
相关资源
文章:타임라인 뷰
Tooltip
为事件启用工具提示。
scheduler.plugins({
tooltip: true
});
相关资源
Treetimeline
此扩展仅在 PRO 版本中提供
为时间线视图提供 "Tree" 模式。
scheduler.plugins({
treetimeline: true
});
相关资源
文章:타임라인 뷰
Units
此扩展仅在 PRO 版本中提供
单位 视图扩展。
scheduler.plugins({
units: true
});
相关资源
文章:Units View
URL
将调度器的状态(日期、事件 ID、视图)存储在 URL 中。
示例:
<code>10_url_date_plugin.html#date=2014-08-01,mode=month</code>
或
<code>10_url_date_plugin.html#event="15"</code>
scheduler.plugins({
url: true
});
相关资源
Saving the scheduler state in URL
Week Agenda
此扩展仅在 PRO 版本中提供
Week Agenda 视图的代码文件。
scheduler.plugins({
week_agenda: true
});
相关资源
Year
Year 视图的代码文件。
scheduler.plugins({
year_view: true
});
相关资源
文章:Year View