showQuickInfo

주어진 이벤트에 대한 팝업 이벤트 폼을 엽니다.

void showQuickInfo(string id);
idstring이벤트의 아이디

Example

var eventId = scheduler.addEvent({
    start_date: "08-06-2013 09:00",
    end_date:   "08-06-2013 11:00",
    text:   "Meeting"
});
 
window.setTimeout(function(){
    scheduler.showQuickInfo(eventId);   
},1);

Details

이 메서드를 사용하려면 quick_info 플러그인이 활성화되어 있어야 합니다.

See also
맨 위로