質問

I have a MVP application implemented. Back button is working fine. I'd like to programatically go back to the previous place. How would I do that?

I'm looking for something like:

clientFactory.getPlaceController().goBack();

Thanks.

役に立ちましたか?

解決

You can simply use the native GWT history for that:

History.back();

他のヒント

If you're using PlaceManager, you can call navigateBack() on an instance of PlaceManager.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top