Re: Getting Form Data Without Submitting Form

2013-06-19 Thread Paul Bors
I suggest you take a look at the Wicket Free Guide: http://wicket.apache.org/learn/books/freeguide.html Nested forms are covered in section 10.5 Nested forms on page 95. For a brief summary you can also search the Wicket wiki pages: https://cwiki.apache.org/WICKET/nested-forms.html ~ Thank

Getting Form Data Without Submitting Form

2013-06-12 Thread Richard W. Adams
I have a FormComponentPanel with an AjaxLink. The link's onClick() method runs a database search based on criteria that are found in a half dozen form fields (string, drop downs, etc.). My problem is that the form's model is not updated because the link does not submit the form. And I can't

Re: Getting Form Data Without Submitting Form

2013-06-12 Thread Sven Meier
Why not use two different forms, one for searching and the other for the save fields? You can even nest the first one into the other. Sven On 06/12/2013 09:09 PM, Richard W. Adams wrote: I have a FormComponentPanel with an AjaxLink. The link's onClick() method runs a database search based on

Re: Getting Form Data Without Submitting Form

2013-06-12 Thread Richard W. Adams
Date: 06/12/2013 02:15 PM Subject:Re: Getting Form Data Without Submitting Form Why not use two different forms, one for searching and the other for the save fields? You can even nest the first one into the other. Sven On 06/12/2013 09:09 PM, Richard W. Adams wrote: I have

Re: Getting Form Data Without Submitting Form

2013-06-12 Thread Jeremy Thomerson
On Wed, Jun 12, 2013 at 3:26 PM, Richard W. Adams rwada...@up.com wrote: Well, first, HTML doesn't allow nested forms, per the w3.org site. Second, the search fields need to be part of the overall form, because they (along with the other fields) are persisted if the user presses the Save