Re: Is there an ajax WizardButton to use in a wizard inside a ModalWindow?

2010-09-20 Thread fstof
drf wrote: in which class are call calling setOutputMarkupId(true) on the wizard ? Since we are calling target.addComponent(wizard); setOUtputMarkupId should be seton the wizard itself, since that is the component we want to re-render. -- View this message in context:

Re: Is there an ajax WizardButton to use in a wizard inside a ModalWindow?

2010-09-20 Thread fstof
Sean Brookes wrote: Thank you for posting your code on this. It is exactly the same issue I am working on. A problem I am experiencing is with adding the wizard to the target in the addOrReplace method of AjaxWizardButtonBar: target.addComponent(wizard);

Re: Is there an ajax WizardButton to use in a wizard inside a ModalWindow?

2010-09-19 Thread drf
in which class are call calling setOutputMarkupId(true) on the wizard ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Is-there-an-ajax-WizardButton-to-use-in-a-wizard-inside-a-ModalWindow-tp1876283p2545937.html Sent from the Users forum mailing list archive at

Re: Is there an ajax WizardButton to use in a wizard inside a ModalWindow?

2009-02-18 Thread Sean Brookes
Thank you for posting your code on this. It is exactly the same issue I am working on. A problem I am experiencing is with adding the wizard to the target in the addOrReplace method of AjaxWizardButtonBar: target.addComponent(wizard); That is causing the init

Re: Is there an ajax WizardButton to use in a wizard inside a ModalWindow?

2008-10-09 Thread fstof
Ahaa... I see... Can you maybe post your implementation of the onclick method of the AjaxNextButton? sorry, but I'm a bit new with the wicket thing Thanks a lot for the help AshleyAbraham wrote: Yes, I did make it to work by creating those two Ajax buttons and putting them in a class

Re: Is there an ajax WizardButton to use in a wizard inside a ModalWindow?

2008-10-09 Thread fstof
Oops... I see you are only concerned with the cancel and finish buttons... I'm looking to make everything, including the next and previous buttons to use ajax... I'm asuming I'll have to have something like this in there someware, yes? target.addComponent(wizard); fstof wrote: Ahaa... I

Re: Is there an ajax WizardButton to use in a wizard inside a ModalWindow?

2008-10-08 Thread fstof
Hey man, I'm looking for something similar, have you got it working? AshleyAbraham wrote: Just to clarify: I have created three classes, the parent class is the AjaxWizardButton similar to Wicket's WizardButton and the two child classes are AjaxCancelButton and AjaxFinishButton similar to

Re: Is there an ajax WizardButton to use in a wizard inside a ModalWindow?

2008-10-08 Thread AshleyAbraham
Yes, I did make it to work by creating those two Ajax buttons and putting them in a class which extends WizardButtonBar class and overrided the newButtonBar() in the Wizard class to pass that. Its been a while since I did it, so I dont have the exact details on the tip of my finger. Hope it

Is there an ajax WizardButton to use in a wizard inside a ModalWindow?

2008-03-11 Thread AshleyAbraham
Hi everyone, I am using a Wizard inside a ModalWindow and I am trying to close the ModalWindow when the CancelButton or FinishButton is clicked. When one of those button's are clicked nothing happens, and I've found out that I need to use either AjaxButton or AjaxLink to make it work. Is

Re: Is there an ajax WizardButton to use in a wizard inside a ModalWindow?

2008-03-11 Thread AshleyAbraham
AshleyAbraham wrote: Hi everyone, I am using a Wizard inside a ModalWindow and I am trying to close the ModalWindow when the CancelButton or FinishButton is clicked. When one of those button's are clicked nothing happens, and I've found out that I need to use either AjaxButton or