GWT 2.1 and Place with token

2010-10-27 Thread Nicolas ANTONIAZZI
Hello, I converted all my project to GWT 2.1 Activity/Place following the concept described on http://code.google.com/intl/fr/webtoolkit/doc/trunk/DevGuideMvpActivitiesAndPlaces.html But, doing this work, I came to a question : Why do we have to set a name in the place constructor ? A place

Re: GWT 2.1 and Place with token

2010-10-27 Thread Sebastian Beigel
Hi Nicolas, often your places are parameterized, think of a detail/edit screen for example that needs the model's id. The token is a generic way to provide additional information (via the URL) to the place (i.e. the activity/-ies), i.e. #editFoo:42. You can of course re-use one place to dispatch

Re: GWT 2.1 and Place with token

2010-10-27 Thread Nicolas ANTONIAZZI
Oh, you are absolutly right ! I had not think to this case. Thanks Sebastian Nicolas. 2010/10/27 Sebastian Beigel sebast...@beigel.de Hi Nicolas, often your places are parameterized, think of a detail/edit screen for example that needs the model's id. The token is a generic way to provide