커스텀 이벤트 박스의 HTML 콘텐츠를 생성합니다
container | HTMLElement | 이벤트의 컨테이너 요소 |
event | object | 이벤트 데이터 객체 |
boolean |
|
scheduler.renderEvent = function(container, ev) {
var container_width = container.style.width;
var html = "<div class='dhx_event_move my_event_move' style='width:" +
+ container_width + "'></div>";
...
container.innerHTML = html;
return true;
}
이 메서드는 Day 뷰나 Week 뷰처럼 수직 스케일이 있는 뷰에서만 적용된다는 점을 유의하세요.