GWT: library for encoding/decoding arbitrary data in URL fragments
Posted
by Caffeine Coma
on Stack Overflow
See other posts from Stack Overflow
or by Caffeine Coma
Published on 2010-05-30T01:08:42Z
Indexed on
2010/05/30
1:12 UTC
Read the original article
Hit count: 337
Ajax applications, and GWT in particular, use the URL fragment (e.g. http://example.com/myapp#fragment) to maintain application state on the client without reloading the page.
Is there a GWT library that facilitates the encoding and decoding of arbitrary parameters into the URL fragment? I'm looking for something analogous to the Servlet API's getParameter() method, but for client-side URL parameters.
© Stack Overflow or respective owner