Re: Directions for Stateless Ajax

2008-12-04 Thread aditsu
- getCallbackUrl returns a url constructed using ILinkListener.INTERFACE - onBind calls getComponent().setOutputMarkupId(true) (just like AbstractDefaultAjaxBehavior) For the record, I'm using wicket 1.4-m3 Adrian -- View this message in context: http://www.nabble.com/Directions-for-Stateless-Ajax

Re: Directions for Stateless Ajax

2008-12-04 Thread aditsu
-td20031309.html First, because I hadn't heard of that; second, I need approval from my boss. I expect he'll be ok. Oh and third, I need time to run some more tests. Adrian -- View this message in context: http://www.nabble.com/Directions-for-Stateless-Ajax-tp17518987p20831648.html Sent from

Re: Directions for Stateless Ajax

2008-06-17 Thread nate roe
I've written a stateless auto-complete TextField by adapting Wicket's own JavaScript and using a servlet for the back end. I don't like the servlet and I would like to instead use Wicket to serve the auto-complete suggestions list, but I'm not sure how. It must take a GET param (the text to

Directions for Stateless Ajax

2008-05-28 Thread Alan Romaniusc
Hi, I have been digging in how to make stateless ajax requests in wicket. My application needs an autocomplete textfield that must work all the time, including after session expiration. I found a solution using a timer to ping the server, but this solution was rejected :(. Where/What should I be

Re: Directions for Stateless Ajax

2008-05-28 Thread Igor Vaynberg
you should look into integrating a third party javascript library to do the autocompletion, and using a servlet or a wicket shared resource to feed it data -igor On Wed, May 28, 2008 at 11:23 AM, Alan Romaniusc [EMAIL PROTECTED] wrote: Hi, I have been digging in how to make stateless ajax

Re: Directions for Stateless Ajax

2008-05-28 Thread Erik van Oosten
Well, under these circumstances: donĀ“t use wicket. Just write your own javascript and use a servlet. Regards, Erik. Alan Romaniusc wrote: Hi, I have been digging in how to make stateless ajax requests in wicket. My application needs an autocomplete textfield that must work all the time,