What version of tapestry are you using? In 3.0.3, things are called in the order in which they appear on the form, so if your image submit appears before your property selection, then this is the correct behavior. If you're using 4.x, things change slightly. The listener parameter is still notified as in 3.0.3. But you can also specify (or you can specify instead) an "action" (also a listener method). The action is called at the end of the form rewind, just before the form listener. So, if you're using 4.x, try using the action parameter rather than the listener parameter.
Robert Gabriel H. Lozano M. wrote: > Hi everyone > > I have this problem: I have an imageSubmit with a listener, inside a form > without a listener. I have a propertySelection inside the form. When I clic > on the submit image first it is calling the listener and next it sets the > object of the property selection. I know this because I print when the > property selection models sets the selected object. Is this correct?? Is > this the correct way things should go?? > > Gabriel Lozano. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
