Hi, There are some ocassions where it's very useful to be able to define some params to these tags, as the text to be shown is from a ResourceBundle and has params in the form:
"This is a message for {0}"
or something like this. Does anybody know how to handle this
situation? I've tried something like this:
<h:messages value="#{messages.MessageWithParams}" >
<f:param value="#{user.name}"/>
</h:messages>
but with no success.
Any ideas?

