is the container inside a GWT LayoutWidget (gwt widget that implements RequiresResize and ProvidesResize)? If so, the parent widget should automatically trigger the "onResize" function once the widget is visible in the window
if you are not using a LayoutWidget, you should be able to execute the following code instead of a 5 second timer
Scheduler.get().scheduleDeferred(new ScheduledCommand() {
|
public void execute() {
|
calendar.onResize();
|
}
|
| }); |
i know we had a similar question in another thread, i'll try to find it and see what we recommended previously.