tooltip_text

툴팁에 표시되는 텍스트를 설정합니다

startDate이벤트가 시작되는 날짜
endDate이벤트가 종료되는 날짜
eventobject이벤트 객체 자체

Example

scheduler.templates.tooltip_text = function(start,end,ev){
    return "<b>Event:</b> "+ev.text+"<br/><b>Start date:</b> " + 
    scheduler.templates.tooltip_date_format(start)+ 
    "<br/><b>End date:</b> "+scheduler.templates.tooltip_date_format(end);
};

Applicable views:아젠다 뷰, Day View, Map View, Month View, 주간 보기, Week Agenda View, Units View
Details

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

See also
맨 위로