Modifier and Type | Method and Description |
---|---|
com.google.gwt.event.shared.HandlerRegistration |
addEventRemoveClickHandler(EventRemoveClickHandler handler)
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 . |
com.google.gwt.event.shared.HandlerRegistration addEventRemoveClickHandler(EventRemoveClickHandler handler)
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 EventRemoveClickHandler.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.
handler
- the eventRemoveClick handlerHandlerRegistration
used to remove this handler