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

2009-10-19 Thread Pedro Santos
all I put into onUpdate() Method (tagTitle textfield) > > many thanks in advance. > > > > - Ursprüngliche Mail > Von: Pedro Santos > An: users@wicket.apache.org > Gesendet: Montag, den 19. Oktober 2009, 13:50:33 Uhr > Betreff: Re: AW: Ajax Send TextF

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

2009-10-19 Thread Peter Arnulf Lustig
s 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 AjaxFormComponentUpdating

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

2009-10-19 Thread Peter Arnulf Lustig
ag, 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 us

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

2009-10-19 Thread Pedro Santos
quot;) { > >@Override >protected void onUpdate(AjaxRequestTarget arg0) { >System.out.println(tagTitle.getModelObject()); >} > > })); > > > > > > - Ursprüngliche Mail > Von: Peter Arnulf Lustig > An: users@wicket.apache.org >

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

2009-10-19 Thread Peter Arnulf Lustig
Von: Peter Arnulf Lustig 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 an AjaxFormComponentUpdatingBeh

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

2009-10-19 Thread Peter Arnulf Lustig
on: Pedro Santos 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?

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

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 AjaxEventBeha

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 un