ui: include with JSF rendered does not work actions

3

I have two ui:include inside a template, follow the example below:

/*Desse Jeito ele entra nos metodo corretamente!*/
<ui:include src="../home/dados.xhtml"></ui:include>

/* com rendered não entra no metodo */
<h:panelGroup rendered="#{param['lotes'] == true}">
    <ui:include src="../home/dados.xhtml"></ui:include>
</h:panelGroup>

Why does this occur? how can I solve this mt thank you!

    
asked by anonymous 23.11.2015 / 02:58

1 answer

-2

I've already had a problem with this.

In my case I was just doing the following:

<h:panelGroup rendered="#{param['lotes'] == 'true'}"> <ui:include src="../home/dados.xhtml"> </ui:include> /h:panelGroup>

    
23.11.2015 / 18:29