[Wicket-user] AjaxSubmitButton - Cancel

2007-06-14 Thread John Carlson
I have a form with two ajaxbuttons, submit and cancel. The form has a number of textfields that validate themselves 'onblur' using ajaxformcomponentupdatingbehaviour. What is the cleanest way to have the cancel button ignore the validation that the submit button is following? I know regular

Re: [Wicket-user] AjaxSubmitButton - Cancel

2007-06-14 Thread John Carlson
-user] AjaxSubmitButton - Cancel On 6/14/07, John Carlson [EMAIL PROTECTED] wrote: I have a form with two ajaxbuttons, submit and cancel. The form has a number of textfields that validate themselves 'onblur' using ajaxformcomponentupdatingbehaviour. What is the cleanest way to have the cancel

Re: [Wicket-user] AjaxSubmitButton - Cancel

2007-06-14 Thread John Carlson
enters abc. if you skip the validation how do you expect to update the model? you cannot convert abc to an integer so how do you expect it to be pushed into the model's integer field? updating the model only makes sense if the validation passed -igor On 6/14/07, John Carlson [EMAIL PROTECTED] mailto

[Wicket-user] Linking to a specific ajaxtabbedpanel

2007-04-27 Thread John Carlson
Hello, I have a page with 4 tabs (ajaxtabbedpanels), on the first tab I want to describe the other tabs and have a link next to the description that goes directly to another tab within the same page. So far the only reliable way I found was to determine the link that wicket generates and

[Wicket-user] DropDownChoice Ajax to render 1 of 3 forms

2007-04-24 Thread John Carlson
I have a page with a DropDownChoice box and 3 Forms. The Forms and DropDownChoice belong to the same Panel. I would like to only show one Form at a time via the selection made on the DropDownChoice box. I have added a AjaxFormComponentUpdatingBehavior onchange to the DropDownChoice and

Re: [Wicket-user] DropDownChoice Ajax to render 1 of 3 forms

2007-04-24 Thread John Carlson
@lists.sourceforge.net Subject: Re: [Wicket-user] DropDownChoice Ajax to render 1 of 3 forms do forms start out as invisible when the page renders first? if so try calling setoutputmarkupplaceholdertag(true) on them, or repaint their common parent. -igor On 4/24/07, John Carlson [EMAIL PROTECTED] wrote: I have