본문으로 건너뛰기

onEventCut

Description

사용자가 'CTRL+X' 키보드 단축키를 누를 때 트리거됩니다 (이 기능은 'keyboard navigation' 확장 기능이 활성화된 경우에만 작동합니다).

onEventCut: (ev: object) => void;

Parameters

  • ev - (required) object - 이벤트 객체

Example

scheduler.attachEvent("onEventCut", function(ev) {
dhtmlx.message("이벤트가 잘렸습니다: <br/><b>"+ev.text+"</b>");
scheduler.updateEvent(ev.id);
});

Details

노트

이 이벤트는 key_nav 확장 기능이 활성화된 경우에만 작동합니다.

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.