converting <f:param>
Hi all,
does anyone know if it's possible to convert a <f:param> nested in a <h:outputFormat> tag using standard or custom converters? A very simple example is:
<h:outputFormat value="Today is {0}">
<f:param value="#{bean.date}"/>
</h:outputFormat>
and I'd like to have the bean.date property (of type java.util.Date) properly formatted. Tried nesting <f:formatDateTime> inside the <f:param> tag, but that doesn't seem to work.
Thanks for even thinking about it :-)
Josef

