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);
            }
        });

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to