Re: inlineframe usage

2011-09-22 Thread kugaprakash
Hi, Can you please let me know if you had a solution? Also would appreciate any sample code. we have a similar issue, I have a wicket panel, with few components and then have an IFrame. Thanks Kuga -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/inlineframe-usage

inlineframe usage

2008-04-15 Thread dvd
Hello: I am trying to implement the following in one html page    wicket:linka href=IFrame.html?src=url when clicked, it would call another page IFrame.class which has IFrame.html like diviframe wicket:id=iframe src=#/div I thought I could do in IFrame.java  like add(new

Re: inlineframe usage

2008-04-15 Thread Rüdiger Schulz
Hello dvd, If the URL is an external one (i.e. not a link to a wicket page), you can't use the InlineFrame class from wicket. Just use WebmarkupContainer and link it to the iframe tag. I had the same problem when doing the iframe integration for wicketstuff-picnik (not yet comitted, but will be

Re: inlineframe usage

2008-04-15 Thread dvd
Hello, Rudiger: I got it and it worked. Thanks very much. Hello dvd, If the URL is an external one (i.e. not a link to a wicket page), you can't use the InlineFrame class from wicket. Just use WebmarkupContainer and link it to the iframe tag. I had the same problem when doing the iframe