showLightbox

为指定事件打开lightbox

void showLightbox(string id);
idstring事件的id

Example

var eventId = scheduler.addEvent({
    start_date: "08-06-2013 09:00",
    end_date:   "08-06-2013 11:00",
    text:   "会议"
});
...
scheduler.showLightbox(eventId);

Related samples

See also
返回顶部