Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

TUTORIALVaadin lets you build secure, UX-first PWAs entirely in Java.
Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Calling javascript synchronously by Enver Haase, 3 weeks ago
Disable calendar event moving
I want to disable moving events from Calendar
I tried:
calendar.setHandler(null);
calendar.setHandler((EventMoveHandler) null);
calendar.setHandler((BaseEventMoveHandler) null);
EventMoveHandler handler = null;
calendar.setHandler(handler);
BaseEventMoveHandler baseHandler = null;
calendar.setHandler(baseHandler);
But nothing is working. Any suggestion....?
Last updated on
Hi,
I am using calendar.setHandler((EventMoveHandler) null); which is working perfectly to disable moving events.
So your problem might be caused elsewhere in your code.
Cheers,
Koenraad
Last updated on
You cannot reply to this thread.