You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Renzo Tomaselli <re...@tecnotp.it> on 2008/05/29 10:48:37 UTC

[Trinidad] PPR and t:saveState

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