Re: [Wicket-user] Minimal AJAX implementation

2005-10-11 Thread Martijn Dashorst
Here's an innerclass for your component (it uses the innerclass to get at the component id, necessary for the _javascript_ iirc)     /**      * De AJAX handler voor dit veld. Er wordt gebruik gemaakt van de Dojo      * handler.      */     private final class FinanAjaxHandler extends DojoAjaxHandl

Re: [Wicket-user] Minimal AJAX implementation

2005-10-11 Thread Scott Sauyet
Thanks. I'll check it out. -- Scott Martijn Dashorst wrote: I have done so using the DOJOHandler, I suspect it won't cost too much effort to do so using the scriptaculous handler. Check the DojoValidationRequestHandler on how to perform such a feat, and replace the code in the onRenderRe

Re: [Wicket-user] Minimal AJAX implementation

2005-10-11 Thread Martijn Dashorst
I have done so using the DOJOHandler, I suspect it won't cost too much effort to do so using the scriptaculous handler. Check the DojoValidationRequestHandler on how to perform such a feat, and replace the code in the onRenderRequest method to suit your needs. MartijnOn 10/11/05, Scott Sauyet <[E

[Wicket-user] Minimal AJAX implementation

2005-10-11 Thread Scott Sauyet
I know that people are furiously working on AJAX tools for Wicket, and I know there is some experimentatl stuff in the latest releases, but I'm wondering if there is something ready for what I think is a fairly simple need: I would like to update a session variable from a JavaScript function.