Re: Loading content of IFrames only when displayed

2013-10-24 Thread Martin Grigorov
e is > no objections) > > Cheers, > > Christian > > -Ursprüngliche Nachricht- > Von: Martin Grigorov [mailto:mgrigo...@apache.org] > Gesendet: Montag, 21. Oktober 2013 10:18 > An: users@wicket.apache.org > Betreff: Re: Loading content of IFrames only when d

AW: Loading content of IFrames only when displayed

2013-10-24 Thread Christian Schröter
18 An: users@wicket.apache.org Betreff: Re: Loading content of IFrames only when displayed Hi, You can use custom Behavior that removes the 'url' attribute in its #onComponentTag() and adds 'data-url' instead. Component#onComponentTag() is executed before Behavior#onComponentTag() so

Re: Loading content of IFrames only when displayed

2013-10-21 Thread Martin Grigorov
Hi, You can use custom Behavior that removes the 'url' attribute in its #onComponentTag() and adds 'data-url' instead. Component#onComponentTag() is executed before Behavior#onComponentTag() so it should work OK. On Thu, Oct 17, 2013 at 5:29 PM, Christian Schröter < christian.schroe...@1und1.de>

Loading content of IFrames only when displayed

2013-10-17 Thread Christian Schröter
Hello, I'm using the InlineFrame class to display an IFrame. Now the IFrame is added in a dialog prompt, which is not visible by default. The user has to click a certain link to see the IFrame in the dialog prompt. Unfortunately the browser loads the URL defined in the source attribute, no m