Look into the Dictionary class (http://google-web-
toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/i18n/client/
Dictionary.html)

Your JSP page could have:

var myDictionary = {
  myValue: "<%= myValue %>"
};

And GWT could read with:
  Dictionary myDictionary = Dictionary.getDictionary("myDictionary");
  String myValue = theme.get("myValue");

On Feb 20, 11:28 am, andres ospina <[email protected]> wrote:
> I need to pass values from JSP to GWT, for url
>
> 2009/2/20 andres ospina <[email protected]>
>
> > I need to pass values from JSP to GWT
>
> > 2009/2/20 andres ospina <[email protected]>
>
> > I need to pass variables from JSP to GWT
>
> >> 2009/2/20 Lothar Kimmeringer <[email protected]>
>
> >>> andres ospina schrieb:
> >>> >   how to pass jsp values to gwt
>
> >>> I'm not sure if I understand you right, so please ask your
> >>> question again, explaining where you are calling a JSP-
> >>> page and where GWT comes into play.
>
> >>> Regards, Lothar
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to