Vaadin 6:应用程序#setLocale(Locale)
Vaadin 7:VaadinSession #setLocale(Locale)例如VaadinSession.getCurrent().setLocale();
Vaadin 7的示例代码,可以在initUI方法中使用.
Locale locale = Locale.CANADA_FRENCH;
this.setLocale( locale ); // Call to affect this current UI. Workaround for bug/issue: http://dev.vaadin.com/ticket/12350
this.getSession().setLocale( locale ); // Affects only future UI instances, not current one. See workaround in line above.
// VaadinSession.getCurrent().setLocale( locale ); // Alternative to "this.getSession".
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2842 次 |
| 最近记录: |