Hi,

I'm trying to change the locale for the current user like this:

JSP:
<h:commandLink immediate="true" action="#{Home.germanLocal}">
        <h:graphicImage value="/german_flag.gif"/>
</h:commandLink>


PageBean:

public void germanLocal()
{
        
FacesContext.getCurrentInstance().getViewRoot().setLocale(Locale.GERMAN);
}

It changes the local for the current page but when I navigate to another page 
it is changed back to the default.

Am I missing something here?

Thanks
Jatinder

Reply via email to