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 complete,) and return a <ul> (but no <head>, <body>, etc.,) or nothing (if there are no results.) It also must be stateless (bookmarkable url.) Igor mentions using a SharedResource for this purpose -- can someone elaborate? Is a Portlet useful here? Thanks, Nate On Wed, May 28, 2008 at 11:32 AM, Erik van Oosten <[EMAIL PROTECTED]> wrote: > 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", 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 looking for? >> >> Thx >> >> >> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >