fullcalendar 에 context menu(pop up menu) 추가하기
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
fullcalendar 에 context menu 추가하기..
Fullcalendar Loading callback 사용하는 예제
loading: function (bool, view) {
if (bool){
jQuery('#com_jc_msg_saving').fadeIn();
} else {
jQuery('#com_jc_msg_saving').fadeOut();
jQuery.contextMenu({
selector: '.fc-event',//note the selector this will apply context to all events
trigger: 'right',
callback: function(key, options) {
//this is the element that was rightclicked
console.log(options.$trigger.context);
switch(key)
{
case 'edit_event':
break;
case 'del_event':
break;
case 'add_event':
break;
}
},
items: {
'edit_event': {name: 'Edit'},
'del_event': {name: 'Delete'},
'add_event': {name: 'Create'},
}
});
}
},
'Web > fullCalendar' 카테고리의 다른 글
Full calendar 선택된 이벤트의 하이라이트 기법 (1116) | 2015.04.28 |
---|---|
[fullcalendar] 이벤트 제목에 아이콘 넣기 (645) | 2015.04.28 |
fullcalendar 에서 이벤트 클릭시 배경색상 변환 (656) | 2015.04.28 |
full calendar 에서 이벤트를 드래그로 삽입/삭제 하는 기법 (639) | 2015.04.28 |
fullcalendar 에서 익스플로어에서 이벤트가 나오지 않을때 (2457) | 2015.04.28 |