Setting A Bookmark

2011-09-13 Thread Bill Morrison
This is a simple question, but one I can't seem to find the answer to (all searches return how-to's on implementing History) I'm looking for the code needed to have my GWT application set a bookmark in the users browser. Thanks in advance! Bill -- You received this message because you are

Re: Setting A Bookmark

2011-09-13 Thread Jens
You should let the user decide to bookmark a page or not. In general you have to use GWT's JSNI feature and wrap some native JavaScript to add a bookmark. As far as I know, Chrome and Opera do not support adding bookmarks via JavaScript. -- J. -- You received this message because you are

Re: Setting A Bookmark

2011-09-13 Thread Eric Metcalf
Check out this documentation on history. http://code.google.com/webtoolkit/articles/mvp-architecture.html#history You want to set the 'state' of you application with your URL. You append to the URL some data such as page to display and state of the page and then call a method that will read the