is there a way to implement hierarchical places in gwt 2.1?
E.g. i want:
http://www.myexample.com/foo/bar
In gwt 2.1 i get sth like this:
http://www.myexample.com#foo:bar
Regarding some posts of Thomas Broyer and the GWTP team it looks like
there is no direct way to use hierarchical places in pure gwt 2.1
(e.g. http://groups.google.com/group/gwt-platform/browse_thread/thread/4c00e59dc139ccdf?fwc=1).
Are there workarounds (without involving a third party lib)?
Replacing ":" with "/" may work with a customized
AbstractPlaceHistoryMapper. So maybe the parameters of a place can
mock hierarchical places.
But what about removing the "#" hashtag?
A different way may be using sth like "nested places". But when a
place has no parameters, it results in #Place:null. Is there a way to
disable this "null" token?
Thanks for any ideas or remarks!
Best
dom
Hey,is there a way to implement hierarchical places in gwt 2.1?
E.g. i want:
http://www.myexample.com/foo/barIn gwt 2.1 i get sth like this:
http://www.myexample.com#foo:barRegarding some posts of Thomas Broyer and the GWTP team it looks like
there is no direct way to use hierarchical places in pure gwt 2.1
(e.g. http://groups.google.com/group/gwt-platform/browse_thread/thread/4c00e59dc139ccdf?fwc=1).
Are there workarounds (without involving a third party lib)?
Replacing ":" with "/" may work with a customized
AbstractPlaceHistoryMapper. So maybe the parameters of a place can
mock hierarchical places.
But what about removing the "#" hashtag?