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

We use rich:calendar component.

It's default locale is English - names of months and other labels.

How to plug other than En locale?

Thank you.

share|improve this question

1 Answer

up vote 2 down vote accepted

You can set the locale by the locale attribute which points to java.util.Locale:

<rich:calendar locale="#{bean.locale}" />

Or when you already have a <f:view locale="#{bean.locale}"> for i18n:

<rich:calendar locale="#{facesContext.viewRoot.locale}" />

See also:

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.