hi there.
I've created a jsf page with some of the lines here:
<f:loadBundle basename="de.szb.pt.i18n.View" var="View" />
....
<h:outputFormat value="#{View.transaktionDataReceived}"
escape="false">
<f:param value="#{client.atmTransactionDataCount}" />
<f:param value="#{client.atms}" />
<f:param value="#{client.newSuggestionsCount}" />
<f:param value="#{client.suggestionsCount}" />
<f:param value="#{client.approvedSuggestionsCount}" />
</h:outputFormat>
I've a property file with this line:
transaktionDataReceived=Transaktionsdaten f?r {0} von {1} GA's erhalten.<br />{2} neue Bef?llvorschl?ge insgesamt {3}, davon {4} gepr?ft. Ungepr?fte Bef?llvorschl?ge mit:
The resulting page shows this result:
Transaktionsdaten f?r 44 von 82 GAs erhalten.
{2} neue Bef?llvorschl?ge insgesamt {3}, davon {4} gepr?ft. Ungepr?fte Bef?llvorschl?ge mit:
It shows that params 2 to 4 aren't filled. I have tried to show the params in a outputText tag and they are definitely filled. Why not in that outputFormat?
Tried that on websphere AS 6.0.2
Kind regards,
Kai