Hi,
I am having one requirement. I need to pass the param value to the backing bean like
<ui:include src="/template/common/commonHeader.xhtml">
<ui:param name="tagLine" value="JSF value"></ui:param>
</ui:include>
I need to pass the param value to some backing bean. How can we do this?
I am able to pass to other xhtml... like
<ui:composition>
</ui:composition>
i know ui:param has to be used to pass the value from one xhtml to another xhtml. But Is it possible to pass the value to a target backing bean?
to pass a value to backing bean i think you can use <f:setPropertyActionListener value="value" target="#{yourManagedBean.prop}" />
regards.