Hi,
Is it possible to write nested JSF expression? If yes, please give me the syntax. If No, Is there any possible work around ??
I need this as I need to display column in rich Datatable from hasmap.
<rich:column>
<f:facet name="header">
<h:outputText value="Item Number" />
</f:facet>
<h:outputText value="#{item.get('key')}" />
</rich:column>
In the above example, I cant hardcode 'key' in the expression lang. I need to read from properties file.
Please Help. Thanks.