I was thinking of a similar solution. Open a new window with a new form, and move everything that's on the tabbed view to this popup panel. Have this triggered with a control on the first form. I don't know much javascript, but I think this is possible.
On 8/5/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I had a similar problem. I use UIInput components with NO value binding. > Instead the components have a valueChangedListern (function) of a bean. So > the values are added there internally. > Setting immediate="true" on the input components helps, but if you have > serveral "parts" of a form, e.g. a second add button and input fields you > are getting into troubles again. > One solution is to split the form. But you would lose all other entered > values and if client state saving is on you get much overhead. > > To solve the validation issue I have created a component to simulate a > partial form submit (or better partial validation). With this component I > can divide the form ito serveral "parts" where the validation and update > model phase is only invoked on the components if a command component was > clicked of this part. > Maybe this would help you, too?

