For this to work can I use Panels for the Modal content or do I need to
use Pages for the content and set up a PageCreator?

> -----Original Message-----
> From: Chris Colman [mailto:chr...@stepaheadsoftware.com]
> Sent: Tuesday, 26 January 2010 4:03 AM
> To: users@wicket.apache.org
> Subject: RE: How to change content in ModalWindow
> 
> My use case might explain the situation better:
> 
> User visits a page that needs authentication. A ModalWindow appears
with
> a username/password field pair and a 'sign in' button. In case they
are
> a new user it also contains a 'create account' button. If they click
> this then the contents of the ModalWindow changes to hold more fields,
> name, email, password, confirm password etc., sufficient to creating a
> new account. I wanted to do a nice smooth switch from the 'sign in'
> presentation to the 'create account' presentation without the flicker
of
> closing the form and bringing up a new form.
> 
> 
> > -----Original Message-----
> > From: Chris Colman [mailto:chr...@stepaheadsoftware.com]
> > Sent: Tuesday, 26 January 2010 3:58 AM
> > To: users@wicket.apache.org
> > Subject: RE: How to change content in ModalWindow
> >
> > I tried that initially but calling modalContentWindow.show when
there
> > already is a ModalWindow being displayed creates a new ModalWindow
> that
> > sits over the top of the original one meaning I now have 2 windows
> that
> > the user has to close.
> >
> > My aim is to have only one ModalWindow but just switch its contents.
> >
> > > Aren't you missing a :
> > >
> > > modalContentWindow.show(target)
> > >
> > > in the onClick callback ?
> > >
> > > 2010/1/25 Chris Colman <chr...@stepaheadsoftware.com>
> > >
> > > > Searching Nable shows this question has been asked before but
> there
> > none
> > > > of the solutions proposed there work for me.
> > > >
> > > > I have a link in PanelA that, when clicked, should cause PanelB
to
> > > > display in the same ModalWindow (PanelB replaced PanelA).
> > > >
> > > > The onClick event handler does something like the following:
> > > >
> > > >    add
> > > >    (
> > > >        new AjaxLink("selectionLink")
> > > >        {
> > > >            public void onClick(AjaxRequestTarget target)
> > > >            {
> > > >                PanelB panelB = new
> > > >                    PanelB(modalContentWindow.getContentId());
> > > >
> > > >                    modalContentWindow.setContent(panelB);
> > > >                    modalContentWindow.setTitle("Hi, I'm
PanelB");
> > > >                    target.addComponent(panelB);
> > > >            }
> > > >        }
> > > >    );
> > > >
> > > > When the link is pressed the panel A content disappears (popup
> > content
> > > > goes blank) but the panel B content does not appear.
> > > >
> > > > Should this work or have I missed something?
> > > >
> > > >
> >
---------------------------------------------------------------------
> > > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > > > For additional commands, e-mail: users-h...@wicket.apache.org
> > > >
> > > >
> >
> >
---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to