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
21 July, 2008 - 13:00 — SenakaHi 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.<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
21 July, 2008 - 13:17 — DavidOK Senaka, I'll do it this way.
Thanks a lot
David