Hi,
I have the following issue: I use a FilteredActivityMapper with the
following filtering:
@Override
public Place filter(Place place) {
if(// check user is logged in) {
return new EIRegisterPlace("", place);
}
return place;
}
Filtering works well except that when the user logs in I call
placeController.goTo(nextPlace) and the code gets stuck. The reason is that
the "where" variable is still set to the old place (and not the
EIRegsiterPlace), so where = nextPlace and the placeController gets blocked.
Any idea if this normal (that the place doesn't change to
"EIRegisterPlace")? and is there a workaround? another way of proceeding?
Thanks,
Thomas
--
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/-/CHNVhAHGq0kJ.
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.