Still have problem with this issue... I 've to include the page in a
iframe but still not working.

On 1/26/07, Carfield Yim <[EMAIL PROTECTED]> wrote:
> On 1/26/07, Matej Knopp <[EMAIL PROTECTED]> wrote:
> > Is that a wicket form? Is it a completely different application? How it
> > is related to modal window?
> >
> Yes, it is wicket form at completely difference application
> (difference host). One application call that page through ModalWindow
> and RedirectPage, the code is
>
>
>         final ModalWindow modal = new ModalWindow("ajaxpanel");
>         modal.setCssClassName(ModalWindow.CSS_CLASS_GRAY);
>         modal.setPageCreator(new PageCreator() {
>             private static final long serialVersionUID = 1L;
>             public Page createPage() {
>                 return  new RedirectPage("http://host2/app/tickdatasearch";);
>             }
>         });
>         add(modal);
>         add(new AjaxFallbackLink("tickdatasearch") {
>             private static final long serialVersionUID = 1L;
>             public void onClick(AjaxRequestTarget target) {
>                 modal.show(target);
>             }
>         });
>

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to