Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I want to change the locale using javascript in the JSF.Can anyone give example.

share|improve this question

1 Answer

up vote 3 down vote accepted

Just let JavaScript send a HTTP request in some way (form.submit(), window.location, ajax, etc) so that JSF is able to do

String locale = getItAsRequestParameterOrSomething(); // "en", "en_US", etc
FacesContext.getCurrentInstance().getViewRoot().setLocale(new Locale(locale));

You can find a kickoff example which does that by a dropdown which is submitted by JS in this answer: JSF locale is set per request,not for session

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.