>From: "Pfau, Oliver" <[EMAIL PROTECTED]>
>
>Hi,
>what is the method setTransient(boolean) from UIComponent good for ?
>
 
When you set a components transient property to true, the component will
not be serialized to the saved state of the view.  This also means that if
you are using client side state saving, the payload will not contain the
transient components.
 
Transient components have to be recreated when the view is restored.
The verbatim component is a transient outputText component.  It
generally contains mark-up in your JSP that you don't really need
to send to the client in the saved view state.  That mark-up might
also contain a JSP EL value that needs to be reevaluated when
the view is restored.
 
 
 
>Thanks,
>Oliver
 
Gary

Reply via email to