示例
论坛
支持
文档
onAfterBatchUpdate
onAfterEventDisplay
onAfterFolderToggle
onAfterLightbox
onAfterQuickInfo
onAfterSchedulerResize
onBeforeBatchUpdate
onBeforeCollapse
onBeforeDrag
onBeforeEventChanged
onBeforeEventCreated
onBeforeEventDelete
onBeforeEventDisplay
onBeforeEventDragIn
onBeforeEventDragOut
onBeforeEventPasted
onBeforeExpand
onBeforeExternalDragIn
onBeforeFolderToggle
onBeforeLightbox
onBeforeParse
onBeforeQuickInfo
onBeforeSectionRender
onBeforeTodayDisplayed
onBeforeTooltip
onBeforeViewChange
onCellClick
onCellDblClick
onClearAll
onClick
onCollapse
onConfirmedBeforeEventDelete
onContextMenu
onDataRender
onDblClick
onDestroy
onDragEnd
onEmptyClick
onError
onEventAdded
onEventCancel
onEventChanged
onEventCollision
onEventCopied
onEventCreated
onEventCut
onEventDeleted
onEventDrag
onEventDragIn
onEventDragOut
onEventDropOut
onEventIdChange
onEventLoading
onEventPasted
onEventSave
onEventSelected
onEventUnselected
onExpand
onExternalDragIn
onLightbox
onLightboxButton
onLimitViolation
onLoadEnd
onLoadError
onLoadStart
onLocationError
onMouseDown
onMouseMove
onOptionsLoad
onOptionsLoadFinal
onOptionsLoadStart
onParse
onQuickInfo
onSaveError
onScaleAdd
onScaleDblClick
onSchedulerReady
onSchedulerResize
onTemplatesReady
onTimelineCreated
onViewChange
onViewMoreClick
onXLE
onXLS
onXScaleClick
onXScaleDblClick
onYScaleClick
onYScaleDblClick
Start
Scheduler API
事件
onEmptyClick
当用户点击调度器中空白区域(非事件部分)时触发
void
onEmptyClick
(
object
date
,
Event
e
);
date
object
对应用户点击位置的日期
e
Event
原生事件对象
Example
scheduler.
attachEvent
(
"onEmptyClick"
,
function
(
date
,
e
)
{
//这里编写自定义逻辑
}
)
;
Related samples
Handling the pointer highlighting
返回顶部