onEventCut
Description
Wird ausgelöst, wenn der Benutzer die Tastenkombination 'CTRL+X' drückt (funktioniert nur, wenn die 'keyboard navigation' Extension aktiviert ist)
onEventCut: (ev: object) => void;
Parameters
ev- (required) object - Das Event-Objekt
Example
scheduler.attachEvent("onEventCut", function(ev) {
dhtmlx.message("Sie haben das Event ausgeschnitten: <br/><b>"+ev.text+"</b>");
scheduler.updateEvent(ev.id);
});
Related samples
Details
Hinweis
Dieses Event funktioniert nur, wenn die key_nav Extension aktiviert ist.
Related Guides
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.