Event « Facelets « JSF Q&A





1. JSF, actionlistener at facelets    stackoverflow.com

I'm using JSF (Mojarra 1.2) with Richfaces (3.3.2) within some facelets which are used as portlets (I'm using the Jboss Portlet Bridge 2.0 here). Now I'm facing something strange: I've got ...

2. How to invoke an actionListener using a custom tag    stackoverflow.com

I'm migrating from jsf1.x to jsf2.1. I had facelets custom tags that look like (simplified)

<ui:composition>        
    <h:column rendered="${rendered}">
    ...

3. JSF: Does it matter whether place f:event inside f:metadata or not    stackoverflow.com

w.r.t. How to execute action on GET request with f:viewParam?

<f:metadata>
    <f:viewParam name="id" value="#{tInputBean.id}" />
    <f:event type="preRenderView" listener="#{tInputBean.init}" />
</f:metadata>
I'm interested to know whether it matters ...