Hello,
I�m doing a
JSF web, and I�m using a ManagedBean component that I use to return a link list,
very similar to list of "breadcrumbs".
In the beginning, I returned that link list already builded:
(The method getCadena() of the managed bean returns the list as is:)
<h:commandLink value="Home" action="#{navegacionMB.accesoFuncionalidadAction}">
<f:param name="paramIdAccesoFuncionalidad" value="-1"/>
</h:commandLink>
<h:commandLink value="Informes" action="#{navegacionMB.accesoFuncionalidadAction}">
<f:param name="paramIdAccesoFuncionalidad" value="1"/>
</h:commandLink>
<h:commandLink ....
and I put it in my page:
<h:outputText value="#{breadCrumbMB.cadena}"></h:outputText>
but I only obtain the
string "as-is" printed in my page, as expected...
But �How can I put the string in such a way that JSF renders it as a command string?
I suppose there�s a way but I can�t find it...
Thank you very much!!