2014-12-22 2 views

답변

0

예, 가능합니다. 다만이처럼 스케줄러의 change 이벤트를 처리 :

$("#scheduler").kendoScheduler({ 
     change: function (e) { 
     e.preventDefault();       // prevent the default action 
     if (e.events.length > 0) {     // if true then user clicked an event, not an empty slot 
     window.location.href = 'stackoverflow.com'; // replace with the desired url 
     } 
     }, 
     // ... set other properties ... 
}); 

e.events 클릭 이벤트의 목록을 가지고 배열입니다.

Kendo Scheduler Change Event

+0

Ahmad 귀하의 회신에 많은 감사드립니다. 우편이나 다른 방법으로 연락 드릴 수 있습니까? – esquare

관련 문제