calendar_scale_date

Mini-Calendar 헤더(날짜 선택기)의 요일 레이블 형식을 설정합니다.

dateDate헤더 셀의 요일을 나타내는 특정 날짜

Example

const weekDayLabel = scheduler.date.date_to_str("%D");
scheduler.templates.calendar_scale_date = function (date) {
    // M | T | W | T | F | S | S
    return weekDayLabel(date).substr(0, 1);
};

Details

이 템플릿은 minical 플러그인이 활성화된 경우에만 작동합니다.

See also
맨 위로