본문으로 건너뛰기

onEventCopied

Description

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

onEventCopied: (ev: object) => void;

Parameters

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

Example

scheduler.attachEvent("onEventCopied", 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.