A Submit component will only invoke it's listener when it's enclosing form is submitted. So, you should be ok as long as two Submits (in different forms) don't share the same listener.
In short, if the Submit is in Form A, you know it's listener will only fire if Form A is submitted. As for buttons outside of both forms, you can't use Submit as it must be inside a Form. You would have to resort to custom javascript. Doable but not simple or easy to explain in a short email. Geoff On 2/2/06, John Coleman <[EMAIL PROTECTED]> wrote: > A page has 2 forms, lets say an order header to input shipping address and a > basket containing multiple items where you can enter item quantities, assume > the basket is a seperate component. > > How do we implement the submit buttons. Some will want to update the basket > component, some submit the whole page, yet the buttons will need to appear > together and not all in either of the forms? > > TIA > John > -- The Spindle guy. http://spindle.sf.net Get help with Spindle: http://lists.sourceforge.net/mailman/listinfo/spindle-user Blog: http://jroller.com/page/glongman Feature Updates: http://spindle.sf.net/updates --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
