Re: validation without form

2012-06-20 Thread vineet semwal
yes, you can also submit the form using submitlink/ajaxsubmitlink On Wed, Jun 20, 2012 at 10:23 PM, srinash wrote: > > textfield > select box >  submit (for these 2 fields after validation) > > > The form above is the outer form. There is no inner form, only one form the > outer form. > > Can a

Re: validation without form

2012-06-20 Thread srinash
textfield select box submit (for these 2 fields after validation) The form above is the outer form. There is no inner form, only one form the outer form. Can a link be used to validate the user input fields. Please let me know Thanks -- View this message in context: http://apache-wicket

Re: validation without form

2012-06-19 Thread srinash
vineetsemwal wrote > > you dont need that inner form if you are using > ajaxformcomponentupdatingbehavior, > for validation you can just add validator ,you will need to add the > behaviors to both formcomponents if you use > ajaxformcomponentupdatingbehavior > > if you want that inner form and y

Re: validation without form

2012-06-19 Thread vineet semwal
you dont need that inner form if you are using ajaxformcomponentupdatingbehavior, for validation you can just add validator ,you will need to add the behaviors to both formcomponents if you use ajaxformcomponentupdatingbehavior if you want that inner form and you want it to submit than either add

Re: validation without form

2012-06-19 Thread srinash
srinash wrote > > thank you , will take a look > > Sri > Was able to use the ajaxformcomponentupdatingbehavior, this is my scenario textfield select box submit (for these 2 fields after validation) Can you let me know how i can validate and click on submit. Once I submit i take those

Re: validation without form

2012-06-14 Thread srinash
thank you , will take a look Sri -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/validation-without-form-tp4649992p4649998.html Sent from the Users forum mailing list archive at Nabble.com. - To unsu

Re: validation without form

2012-06-14 Thread vineet semwal
formcomponent.add(validator) formcomponent.add(new ajaxformcomponentupdatingbehavior("the_event"){ protected void onError(AjaxRequestTarget target, RuntimeException e){ target.add(feedback); } protected abstract void onUpdate(AjaxRequestTarget target){ target.add(feedback)} } for more concrete exa

Re: validation without form

2012-06-14 Thread srinash
Thanks for the reply. Can you please direct me to some examples. Sri -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/validation-without-form-tp4649992p4649996.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: validation without form

2012-06-14 Thread vineet semwal
you can add ajaxformcomponentupdatingbehavior to them On Thu, Jun 14, 2012 at 10:10 PM, srinash wrote: > Hi, I am trying to validate 2 fields(one is a text field and the other is a > select) that the user can enter and select. This is inside of a bigger form. > I would not want to use a form to v