Re: Cancelling ala AjaxLink vs AjaxButton

2010-09-28 Thread LutherBaker
nvironments and confirm that this isn't a real problem. Thanks for staying with this thread. -Luther -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Cancelling-ala-AjaxLink-vs-AjaxButton-tp2717635p2718183.html Sent from the Users forum mailing list a

Re: Cancelling ala AjaxLink vs AjaxButton

2010-09-28 Thread Igor Vaynberg
onSubmit > Form.delegateSubmit > Form.onSubmit > Form.delegateSubmit > Form.onSubmit > submit.button AjaxButton.onSubmit(target) > Form.delegateSubmit > Form.onSubmit > Form.delegateSubmit > Form.onSubmit > Form.delegateSubmit > Form.onSubmit > Form.delegateSubm

Re: Cancelling ala AjaxLink vs AjaxButton

2010-09-28 Thread LutherBaker
bcd   # Any thoughts would be appreciated. -Luther -- View this message in context: http://apache-wicket.1842946.n4.nab

Re: Cancelling ala AjaxLink vs AjaxButton

2010-09-28 Thread Igor Vaynberg
             modal.close(target); >                                } >                        }; >                        cancel.setDefaultFormProcessing(false); >                        add(cancel); > > > I thought that I could set default form processing = false but that doesn'

Cancelling ala AjaxLink vs AjaxButton

2010-09-28 Thread LutherBaker
final Form form) { modal.close(target); } }; cancel.setDefaultFormProcessing(false); add(cancel); I thought that I could set default form processing = false but that doesn't seem to be enough. Thoughts?