Re: WicketTester -- No Form onSubmit when using Ajax DropDownChoice Component

2010-01-04 Thread shetc
formTester4Submit.select("titles", 0); formTester4Submit.submit(); -- Not quite sure why it works but it does. Thanks very much =) -- View this message in context: http://old.nabble.com/WicketTesterNo-Form-onSubmi

Re: WicketTester -- No Form onSubmit when using Ajax DropDownChoice Component

2010-01-04 Thread shetc
formTester.submit()? Thanks! -- View this message in context: http://old.nabble.com/WicketTesterNo-Form-onSubmit-when-using-Ajax-DropDownChoice-Component-tp27006022p27018255.html Sent from the Wicket - User mailing list archive at Nabble.com

Re: WicketTester -- No Form onSubmit when using Ajax DropDownChoice Component

2010-01-04 Thread Martin Makundi
ge in context: > http://old.nabble.com/WicketTesterNo-Form-onSubmit-when-using-Ajax-DropDownChoice-Component-tp27006022p27012451.html > Sent from the Wicket - User mailing list archive at Nabble.com. > > > - >

Re: WicketTester -- No Form onSubmit when using Ajax DropDownChoice Component

2010-01-04 Thread shetc
s not triggered. So I assume it's some misunderstanding on my part as far as WicketTester is concerned, not about using AjaxFormComponentUpdatingBehavior for components within a form. Steve -- View this message in context: http://old.nabble.com/WicketTester----No-Form-onSubmit-when-using-Ajax-Drop

Re: WicketTester -- No Form onSubmit when using Ajax DropDownChoice Component

2010-01-03 Thread Martin Makundi
Hi! AjaxFormComponentUpdatingBehavior does not submit the other form values, only the involved component. If you want to handle other form values you will need something like AjaxFormSubmitBehavior or AjaxFormSubmittingChangeListenerBehavior: public abstract class AjaxFormSubmittingChangeListene

WicketTester -- No Form onSubmit when using Ajax DropDownChoice Component

2010-01-03 Thread Steve Hiller
Hi All, I'm having an issue when using WicketTester with a form that has 3 DropDownChoice component, which are linked together using the AjaxFormComponentUpdatingBehavior. In the following code snippet, selecting from the "brands" DropDownChoice causes the "categories" DropDownChoice to be filled.