onEventCopied

fires when the user presses the 'CTRL+C' keyboard command (only with the 'keyboard navigation' extension enabled)

void onEventCopied(object ev);
evobjectthe object of the copied event

Example

scheduler.attachEvent("onEventCopied", function(ev) {
    dhtmlx.message("You've copied the event: <br/><b>"+ev.text+"</b>");
    scheduler.updateEvent(ev.id);
});

Related samples

Details

The event requires the key_nav extension to be enabled.

See also
Back to top