eventResizeStart (Properties)

마우스로 일정(Event)의 크기 조절을 시작할 때 발생하는 콜백(callback) 함수를 정의할 수 있습니다.
editable 옵션이 true인 경우에만 사용할 수 있습니다.

Type

function

Example

콜백(callback) 함수 정의 시 "info" 객체를 parameter로 사용할 수 있습니다.
"info" parameter 객체는 다음과 같은 속성들을 포함하고 있습니다.

Parameter DataType 설명
event EventApi 크기를 조절하는 일정(Event) 정보
jsEvent MouseEvent javascript 마우스 이벤트 객체
view Object 현재 뷰(View) 객체
el HTMLElement 크기를 조절하는 일정(Event) UI의 HTML Element
options = {
    eventResizeStart: function(info) {
        console.log("크기를 조절하는 일정(Event)의 id: " + info.event.id);
    }
};

Read More

Since

product version desc
core 1.5.0.0 기능 추가