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.
Asked
Active
Viewed 173 times
1 Answers
0
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);
}

Human McPerson
- 48
- 4
-
Calendar event class is extending Record Class. So there is no method for setting hoverText. I also have to set text as because it's a dynamic Text (i.e., current position's time). I want to fire the event which is automatically fired when user hovers Calendar Event. – Rajnikant Patel Oct 30 '13 at 09:20