달력 fullCalendar 질문
본문
특정 요일에 배경색을 변경하려고 하는데 지금은 전체가 다 색상이 적용되는데요
dayRender: function (date, cell) {
cell.css("background-color", "red");
}
이 부분을 어떻게 수정해야 특정 요일을 적용할 수 있을까요?
$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: ''
},
defaultDate: '<?php echo G5_TIME_YMD?>',
navLinks: true, // can click day/week names to navigate views
editable: false,
eventLimit: false, // allow "more" link when too many events
height: 'auto',
events: {
url: '<?php echo $board_skin_url;?>/get-events.php?bo_table='+g5_bo_table,
error: function() {
$('#script-warning').show();
}
},
loading: function(bool) {
$('#loading').toggle(bool);
},
dayRender: function (date, cell) {
cell.css("background-color", "red");
}
});
답변을 작성하시기 전에 로그인 해주세요.