I'm trying to learn how to use GWT 2.1 MVP framework.
I maded 2 places, for example:
public class MyProfile extends Place {
public static class Tokenizer implements PlaceTokenizer<MyProfile> {
public MyProfile getPlace(String token) {
return new MyProfile();
}
public String getToken(MyProfile place) {
return "Hello World";
}
}
}
But i don't know why, when i try to go to a place, my history doesn't
changes (i mean my url in the browser)
clientFactory.getPlaceController().goTo(new MyProfile());
What i am missing that my code doesn't append "#MyProfile" to my
browser url when i call the goTo() method?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
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.