Loading external resources

is it possible to load an external page into a panel? (or into another container component).
do I need an iframe to achieve that?

Example:

    <bjsf:panel url="http://bdn.backbase.com"/>

This doesn't work, I'm looking for something similar.

kind regards
David

Hi David, The purpose of

Hi David,

The purpose of the url attribute is to dynamically load a jsp subView as a child to the associated component.

You can nest a iframe within <f:verbatim> tags to show the external web page.

<bjsf:panelGroup url="tabLayout.jsp">
<f:verbatim>
<iframe src ="http://www.google.com" width="100%"></iframe>
</f:verbatim>
</bjsf:panelGroup>

Hope this helps,

-Senaka

OK Senaka, I'll do it this

OK Senaka, I'll do it this way.
Thanks a lot
David