Hi Isomorphic,
We have a month view Calendar with a custom EventClickHandler, as defined below.
When we click an Event, for a particular day in the month, it shows our own window, as defined by our EventClickHandler.
However, if we click the "+ 6 more...", the context-menu appears with the remaining Events. Clicking one of the Events in the context-menu opens the standard Event dialog. Our EventClickHandler is not being honored here.
Thanks
SmartClient Version: v10.1p_2016-04-20/Pro Deployment (built 2016-04-20)
We have a month view Calendar with a custom EventClickHandler, as defined below.
Code:
addEventClickHandler(new EventClickHandler() {
@Override
public void onEventClick(CalendarEventClick event) {
CalendarEvent ce = event.getEvent();
event.cancel();
// Show our own window for clicked event.
}
});
However, if we click the "+ 6 more...", the context-menu appears with the remaining Events. Clicking one of the Events in the context-menu opens the standard Event dialog. Our EventClickHandler is not being honored here.
Thanks
SmartClient Version: v10.1p_2016-04-20/Pro Deployment (built 2016-04-20)
Comment