AW: AW: nested forms with modal window

2017-02-24 Thread Christoph.Manig
Mit freundlichen Grüßen Christoph Manig -Ursprüngliche Nachricht- Von: Sven Meier [mailto:s...@meiers.net] Gesendet: Freitag, 24. Februar 2017 10:58 An: users@wicket.apache.org Betreff: Re: AW: nested forms with modal window Hi, it's your code which closes the ModalWindow, you

Re: AW: nested forms with modal window

2017-02-24 Thread Sven Meier
e.org Betreff: Re: nested forms with modal window Hi, public void onSubmit(AjaxRequestTarget target, Form form) { remarkModalWindow.show(target); for(FaultModel fm : selectedModel.getObject()) { System.out.println("ActionButton Remark: " + fm.getFaultRemark()); } } the sub

AW: nested forms with modal window

2017-02-24 Thread Christoph.Manig
] Gesendet: Donnerstag, 23. Februar 2017 16:36 An: users@wicket.apache.org Betreff: Re: nested forms with modal window Hi, >public void onSubmit(AjaxRequestTarget target, Form form) { > remarkModalWindow.show(target); > for(FaultModel fm : selectedModel.getObject()) { >System

Re: nested forms with modal window

2017-02-23 Thread Sven Meier
Hi, public void onSubmit(AjaxRequestTarget target, Form form) { remarkModalWindow.show(target); for(FaultModel fm : selectedModel.getObject()) { System.out.println("ActionButton Remark: " + fm.getFaultRemark()); } } the submit of my modal window will be executed ... after he runs through t

nested forms with modal window

2017-02-23 Thread Christoph.Manig
Hello, I have a form which contains a modal window. The submit button of this form is an AjaxButton and should first open the modal window. This form contains a collection of message object which should be changed by the modal window. The modal window also contains a form and a AjaxButton to su