Last active
January 9, 2016 04:36
-
-
Save ParkMinKyu/1c1d23bec1f718a54e26 to your computer and use it in GitHub Desktop.
M.D.T Front Scheduler Object Sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Scheduler = { | |
calendar : $('#calendar'), | |
events : {}, | |
getEvent : function(){ | |
//서버에서 달력에 표시된 시작일~ 종료일 까지의 일정을 가져와서 fullcalendar에 표시(공통)하고 events배열에 등록(공통) | |
}, | |
addEvent : function(event){ | |
//클라이언트에서 등록한 일정을 서버에 입력 요청 하고 fullcalendar에 표시(공통)하고 events배열에 등록(공통) | |
}, | |
modEvent : function(event){ | |
//클라이언트에서 수정한 일정을 서버에 수정 요청 하고 fullcalendar에 수정(공통)하고 events배열에 등록된 이벤트 수정(공통) | |
}, | |
delEvent : function(event){ | |
//클라이언트에서 삭제한 일정을 서버에 삭제 요 하고 fullcalendar에 삭제(공통)하고 events배열에서도 삭제(공통) | |
}, | |
eventsHandler : function(type, event){ | |
//get,add,mod,del type에 맞게 events배열 설정 | |
}, | |
calendarHandler : function(type, event){ | |
//get,add,mod,del type에 맞게 fullcalendar 설정 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment