3
have two ui:include
within 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 that occur? how can I resolve this mt thanks!
the problem must be rendered the condition instead of true must give false, if false does not render the content of the tag and with that nothing is called even
– Cristian Urbainski