Showing hover text while moving Calendar Event from one place to another

192 Views Asked by At

When user is moving one Calendar Event, I want to show time where the user is going to place the calendar event as a tool tip of Calendar Event.

1

There are 1 best solutions below

1
On

Not sure if I understood what you're trying to do, but perhaps you could use DragStartEvent and DragEndEvent to display the make the tooltip element visible, like this (pseudocode):

onDragStart() {
  tooltip.setVisible(true);
}

onDragEnd() {
  tooltip.setVisible(false);
}