Re: passing parameters to gwt application

2008-10-29 Thread Joshua Partogi
Thanks Jason! This is exactly what I want. cheers On Oct 14, 10:15 pm, Jason Morris <[EMAIL PROTECTED]> wrote: > If you're on GWT 1.5, you can just use > > Window.Location.getParameter("key"); --~--~-~--~~~---~--~~ You received this message because you are subsc

Re: passing parameters to gwt application

2008-10-14 Thread Jason Morris
If you're on GWT 1.5, you can just use Window.Location.getParameter("key"); rudolf michael wrote: > you just have to parse the http URL in your address bar. > in your onModuleLoad method just call the following method > public static native String getHref() /*-{ > return $wnd.location.hr

Re: passing parameters to gwt application

2008-10-14 Thread rudolf michael
you just have to parse the http URL in your address bar. in your onModuleLoad method just call the following method public static native String getHref() /*-{ return $wnd.location.href; }-*/; public void onModuleLoad(){ String url = getHref(); // you just have to parse the

passing parameters to gwt application

2008-10-14 Thread Tanzeem
hi i have a non-gwt applicaton's html page from which i have to pass parameters trhough a href definition like < a href=http://localhost: 7070/MyGWTApp?key=value to a gwt application.How do i make changes in the GWT application to enable parameter recieving? Any help please. --~--~-~--~--