<ui:repeat value="#{admin.detailTypesList}" var="detailType">
<h:outputText value="#{admin.getDetailTypeTranslation('ContactDetailType_'+detailType)}"/>
</ui:repeat>
for the el expression:
#{admin.getDetailTypeTranslation('ContactDetailType_'+detailType)}
The parameter passed to getDetailTypeTranslation
is 'ContactDetailType_'
(without the detailType
value)
What am I doing wrong?