bed at
>> http://www.nabble.com/Stateless-AJAX-links-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.nabbl
Why not put these to into wicketstuff minies?
aditsu wrote:
nate roe wrote:
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
llowing changes:
- getStatelessHint returns true
- 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:
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 compl
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",
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" aj
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