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 Norbert, I'm interested in your solution. Could you please post it here or send me the code? Thanks in advance ;-) On 5/27/05, Cs�k Norbert <[EMAIL PROTECTED]> wrote: > Hi! > > I think this is becase your backing beans are request scope. When you > display the second tab it is empty, because submitting the page with > the first tab doesn't set those values. > > I've implemented a tab change eventlistener, which reloads the request > scope backing bean's data. > > It is working fine for me. > > On 5/27/05, Werner Punz <[EMAIL PROTECTED]> wrote: > > Hi... > > > > Hi have following problem: > > I have a form with lots of entry fields, in the form there is a tabbed > > pane with four tabs all of them containing fields. > > No when i open the page, the fields are set correctly > > in the fields outside the tab and in the first tab, but as soon as I > > switch tabs nothing else is shown anymore. > > To the worse I lose most of the data referenced by those fields. > > > > Does anybody know what happens there. > > I will try to isolate the problem in the evening, to have further details. > > > > Werner > > > > > > > -- > Norbert Cs�k >

