Ajax Send TextField Input to Server without Form / Submit

2009-10-19 Thread Peter Arnulf Lustig
Hi, how is it possible to submit TextField Input to the server without having a Form (and submit) for this task? I figured out, that AjaxButton only has onSubmit() Method -- I expected also something like onClick -- - To

Re: Ajax Send TextField Input to Server without Form / Submit

2009-10-19 Thread Pedro Santos
how is it possible to submit TextField Input to the server without having a Form (and submit) for this task? yes, you can use an AjaxFormComponentUpdatingBehavior for it I figured out, that AjaxButton only has onSubmit() Method -- I expected also something like onClick -- you can use

Re: Ajax Send TextField Input to Server without Form / Submit

2009-10-19 Thread Ernesto Reinaldo Barreiro
I'm not sure you can get rid of the form but you could use a JavaScript like: var url = this.url+ 'textField=' + textField.value; wicketAjaxGet(url); Where this.url is the URL of something implementing ILinkListener. The on the onLinkClicked of the listener read you parameter for the request and

AW: Ajax Send TextField Input to Server without Form / Submit

2009-10-19 Thread Peter Arnulf Lustig
...@gmail.com An: users@wicket.apache.org Gesendet: Montag, den 19. Oktober 2009, 13:12:34 Uhr Betreff: Re: Ajax Send TextField Input to Server without Form / Submit how is it possible to submit TextField Input to the server without having a Form (and submit) for this task? yes, you can use

AW: AW: Ajax Send TextField Input to Server without Form / Submit

2009-10-19 Thread Peter Arnulf Lustig
@wicket.apache.org Gesendet: Montag, den 19. Oktober 2009, 13:36:31 Uhr Betreff: AW: Ajax Send TextField Input to Server without Form / Submit What do I do with a click-button? The User gets a new TextField when I try to add an AjaxFormComponentUpdatingBehavior. I just want to have a textfield

Re: AW: Ajax Send TextField Input to Server without Form / Submit

2009-10-19 Thread Pedro Santos
Mail Von: Peter Arnulf Lustig u...@yahoo.de An: users@wicket.apache.org Gesendet: Montag, den 19. Oktober 2009, 13:36:31 Uhr Betreff: AW: Ajax Send TextField Input to Server without Form / Submit What do I do with a click-button? The User gets a new TextField when I try to add

AW: AW: Ajax Send TextField Input to Server without Form / Submit

2009-10-19 Thread Peter Arnulf Lustig
: Montag, den 19. Oktober 2009, 13:50:33 Uhr Betreff: Re: AW: Ajax Send TextField Input to Server without Form / Submit add(new Button(tagSubmit).add(new AjaxFormComponentUpdatingBehavior(onclick) { the AjaxFormComponentUpdatingBehavior are to textfield component how can I use the content

AW: AW: Ajax Send TextField Input to Server without Form / Submit

2009-10-19 Thread Peter Arnulf Lustig
pedros...@gmail.com An: users@wicket.apache.org Gesendet: Montag, den 19. Oktober 2009, 13:50:33 Uhr Betreff: Re: AW: Ajax Send TextField Input to Server without Form / Submit add(new Button(tagSubmit).add(new AjaxFormComponentUpdatingBehavior(onclick) { the AjaxFormComponentUpdatingBehavior

Re: AW: Ajax Send TextField Input to Server without Form / Submit

2009-10-19 Thread Pedro Santos
textfield) many thanks in advance. - Ursprüngliche Mail Von: Pedro Santos pedros...@gmail.com An: users@wicket.apache.org Gesendet: Montag, den 19. Oktober 2009, 13:50:33 Uhr Betreff: Re: AW: Ajax Send TextField Input to Server without Form / Submit add(new Button(tagSubmit).add(new