You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Web Toolkit
Hi,
I need to pass a parameter to my application. However if I append a
parameter to the url query string, I can not retrieve it by name using
Window.Location. (Always returns null)
When I retrieve the entire Query String, It contains only the
gwt.codesvr parameter, but not my additional parameter.
Any Ideas?
Thanks,
Mike.
Stefan Bachert
unread,
Jun 30, 2010, 4:00:10 PM6/30/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Web Toolkit
Hi,
I use it and it works.
Please supply your URL and your code, probably something went wrong.
public void onModuleLoad() {
String urlKey = Window.Location.getParameter("kc");
if (urlKey != null) {
// do something special here.
} else {
// default code.
}
}
Thanks,
Mike.
On Jun 30, 10:00 am, Stefan Bachert <stefanbach...@yahoo.de> wrote:
> Hi,
>
> I use it and it works.
> Please supply your URL and your code, probably something went wrong.
>
On Jul 2, 3:10 am, mdwarne <mike.wa...@gmail.com> wrote:
> Hi Stephan,
> Thanks for your reply.
>
> I discovered that it works, but not in Developer Host mode (OOPHM).
> Maybe the developer plugin strips the params from the url?
>