public interface EventRemoveClickHandler
extends com.google.gwt.event.shared.EventHandler | Modifier and Type | Method and Description |
|---|---|
void | onEventRemoveClick(CalendarEventRemoveClick event) Called whenever the close icon of an event canvas is clicked in the day, week and timeline views, or when the remove button is pressed in the event editor. |
void onEventRemoveClick(CalendarEventRemoveClick event)
event canvas is clicked in the day, week and timeline views, or when the remove button is pressed in the event editor. Implement this method to intercept the automatic removal of data. You can Call CalendarEventRemoveClick.cancel() from within onEventRemoveClick(com.smartgwt.client.widgets.calendar.events.CalendarEventRemoveClick) to prevent the default action (calling removeEvent()) and instead take action of your own. For example, returning false from this method and then showing a custom confirmation dialog - if the user cancels, do nothing, otherwise make a call to removeEvent(event), passing the event.
event - the event