Seems like an event handling problem. Maybe this problem is by design as you 
fire a PlaceChangeEvent while the first one is still dispatched by the 
eventbus or its just a bug. So maybe you can create an issue for it...just 
to be sure.

In the meantime in you Activity's start method something like

Scheduler.get().scheduleDeferred(new ScheduledCommand() {

  @Override

  public void execute() {

    placeController.goTo(new YourNewPlace());

  }

});


should work. This will make sure that the redirect will be executed after 
everything else is done.


-- J.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/QoV2axaBvwgJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to