728x90 Fullcalendar2 fullcalendar data ajax로 가져와 달력에 뿌리기 달력의 시작일과 마지막 일의 날짜를 서버로 넘겨 조회시킨다. 디비에서 불러온 일정 데이터를 events의 callback함수로 넘긴다. 서버에서 넘길때는 이런 형식으로 넘겼다. 물론 json 형식 문자열로 변환해서 던졌고... $aSchedule[] = [ 'title' => $data['title'], 'start' => date('Y-m-d H:i', strtotime($data['start_date'])), 'end' => date('Y-m-d H:i', strtotime($data['end_date'])), 'className' => 'bg-' . $data['color'], 'id' => $data['idx'], 'content' => $data['content'] ]; 풀캘린더 쪽에는 다음을 .. 2021. 10. 14. fullcalendar mobile size 조절 피시에서는 달력이 가득차게 나오는데 모바일에서는 잘려서 스크롤해야 보이게끔 나온다. contentHeight 속성을 사용하면 해결가능! contentHeight:function(){ if(screen.width 2021. 10. 14. 이전 1 다음