if you use 1.5 then you can use the new event mechanism. see WICKET-1312

in 1.4 you can use something like:

new AjaxFormSubmitBehavior("event) {

   onSubmit(AjaxRequestTarget target, Form form) {
     ...
    target.addChildren(getPage(), MyDialog.class);
  }
}

The last line will register all instances of type MyDialog to be re-rendered
in this Ajax request/response.
Then in your MyDialog#onBeforeRender() { target = AjaxRequestTarget.get();
doSomethingWithTarget(target); }

On Tue, Dec 14, 2010 at 9:16 PM, guydog28 <[email protected]> wrote:

>
> Anyone?  Abstract:  I have extended WiQuery Dialog with our own custom
> dialog.  I want the MyDialog to know if any child components are a Form,
> being submitted via AJAX (AjaxFormSubmitBehavior).  I need access to the
> AjaxRequestTarget created by that ajax form submit so I can append
> javascript to it or add components.  I'm really hoping someone has a
> suggestion that I missed.  This is a major blocker for us right now.
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/How-to-listen-for-CHILD-ajax-form-submits-tp3086439p3087882.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

Reply via email to