resourcebundle « Data « JSF Q&A





1. Including HTML in JSF resource bundle string - possible?    stackoverflow.com

I am using a property defined in a resource bundle properties file in an h:outputText tag in my JSF page. Is it possible to include HTML in the property file ...

2. JSF:pass real locale parameter to resourceBundle call instead of default null    stackoverflow.com

There is quit non-trivial menu on UI. Its items named in loop this way: loop start

<li>
<h:commandLink action="#{menuItem.getGlobalTransitionName()}">#{resourceBundle.getMessage(menuItem.id,null,menuItem.id,null)}
</h:commandLink>
</li>
loop end call to resourceBundle performed above,where default locale is set - it's hardcoded to null value,so resolved ...