> I would like to use the InlineFrame, but the InlineFrame does not work. The
> codes are as follows:
>
> <body>
>         <span wicket:id="libBorder">
>             <iframe wicket:id="bFrame" src="[source]" name="bottom"/>
>         </span>
> </body>
>
> public class Map extends WebPage {
>     public static final String BOTTOM_FRAME_NAME = "bottom";
>
>     public Map(final PageParameters pps) {
>             Border borderUser = new LibBorderUser("libBorder");
>             add(borderUser);
>
>             InlineFrame iframe = new InlineFrame("bFrame",
>                        PageMap.forName(BOTTOM_FRAME_NAME),Display.class);
>             add(iframe);
>     }
> }

Can you tell us more of what goes wrong and what version of Wicket you
are using? And out of curiousity, why use an inline frame?

Eelco

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to