본문으로 건너뛰기

month_events_link

Description

월별 뷰 셀 내에 'View more' 링크가 어떻게 표시되는지 제어합니다

month_events_link: (date: Date, count: number) => string

Parameters

  • date - (required) Date - 해당 월 셀에 해당하는 날짜
  • count - (required) number - 해당 셀의 전체 이벤트 수

Returns

  • text - (string) - 스케줄러에 표시될 HTML 콘텐츠

Example

// 기본 구현 예시
scheduler.templates.month_events_link = function(date, count){
return "<a>View more("+count+" events)</a>";
};

Applicable views: Month view

Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.