[jboss-user] [JBoss Seam] - Re: internationalization question

2007-10-27 Thread mheidt
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082045#4082045 Zerg-Spirit knew better as well :) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4099541#4099541 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=40

[jboss-user] [JBoss Seam] - Re: internationalization question

2007-10-26 Thread [EMAIL PROTECTED]
The org.jbos.seam.localeSelected event is reaised when the locale is selected - that's your "callback" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4099205#4099205 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4099205

[jboss-user] [JBoss Seam] - Re: internationalization question

2007-10-25 Thread mheidt
Douze points | @Override | public void select() { | super.select(); | } | Thanks a lot View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4098873#4098873 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=409887

[jboss-user] [JBoss Seam] - Re: internationalization question

2007-10-25 Thread Zerg-Spirit
Just do that: @Scope(value = SESSION) | @Name(value = "org.jboss.seam.international.localeSelector") | @BypassInterceptors | public class CustomLocaleSelector extends | org.jboss.seam.international.LocaleSelector { | ... | } View the original post : http://www.jboss.com/i

[jboss-user] [JBoss Seam] - Re: internationalization question

2007-10-25 Thread mheidt
Is it possible to overwrite the localeSelector class? I have the problem that translated list entries in a session bean need to be recreated when changing the language. I don't see a setCallback or anything like that. http://www.redhat.com/docs/manuals/jboss/jboss-eap-4.2/doc/seam/api/org/jboss

[jboss-user] [JBoss Seam] - Re: internationalization question

2007-09-12 Thread [EMAIL PROTECTED]
awesome... thank's for the answer wise_guybg now i can finally finish my job cheers View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4083311#4083311 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4083311 __

[jboss-user] [JBoss Seam] - Re: internationalization question

2007-09-12 Thread wise_guybg
Hi, You can have the localeSelector component injected in your authenticator component: @In | LocaleSelector localeSelector; And in the authenticate method: localeSelector.setLocaleString(l); | localeSelector.select(); There are other setters available, too. I use setLocaleString() because