Re: link Button to change locale

2009-02-11 Thread r_q_d
This is very helpful. Thank you, Adam T. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this g

Re: link Button to change locale

2009-01-14 Thread Adam T
Assuming your using the i18n aspects of GWT, what about an Image with a ClickListener for the button and the each button calls the web page with appropriate local set? For example: Image img = new Image("sv.png"); img.addClickListener(){ public void onClick(){ changeLocale("sv"); } }

link Button to change locale

2009-01-14 Thread galago
I'm trying to make a series of buttons with a flag in order to change the locale of the app, but I didn't find any way to do that with the gwt, any suggestions??? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Goog