Enrique Medina wrote:
Yes, I experienced that problem with request scoped beans and tabbed
panes. There are several solutions to the problem:
a) Scope the beans as being session scoped
b) Use some kind of object that holds the model of the tabbed beans,
put it in session and inject it to the request scoped beans through
the JSF IoC mechanism
c) Use the <x:saveState> tag
For the x:saveState you have to implement the Serialization
for the entire object which has to be covered by the tab, am I right?