Hi, I miss a clear picture about the interaction between t:saveState and
Trinidad PPR. Assume I have a Facelets ui:component, containing any ui
tag which might be a PPR target. Then there is a t:saveState tag used to
save some bean contents across requests.
Next sequence works fine, saving selected bean contents whenever the
enclosing panel group is chosen as PPR target:
<ui:component>
<tr:panelGroupLayout partialTriggers="...">
<t:saveState value="#{bean.selected}"/>
But would this:
<ui:component>
<t:saveState value="#{bean.selected}"/>
<tr:panelGroupLayout partialTriggers="...">
work as well - e.g. t:saveState would save selected contents, although
out of current PPR target ?
Thanks,
-- Renzo