How to display a static html page inside a tab?

Hello,

I would like to display the content of a customer static html page (not my code) inside a tabset.

So far when I click on this tab, I succeed to navigate to my customer page, but I would like to have the content of this page to be displayed inside my tab.

Is it possible to do that?

Thanks,

Val

[337 byte] By [vsevel] at [2007-11-26 9:32:32]
# 1
Is this possible?
pennstump at 2007-7-7 0:19:14 > top of Java-index,Development Tools,Java Tools...
# 2
How about a static text component with escape set false and text set to the html? You'll need to write something to fetch the html first.Or how about a frameset?
yossarian at 2007-7-7 0:19:14 > top of Java-index,Development Tools,Java Tools...
# 3
That is right, I succeed to do it like this: StaticText st = new StaticText(); st.setText("<iframe id='urlFrame' frameborder='0' src=' http://www.yahoo.fr' height='100%' width='100%'>test.....</iframe>"); st.setEscape(false);
vsevel at 2007-7-7 0:19:14 > top of Java-index,Development Tools,Java Tools...
# 4
Put a markup component with tag attribute set to "iframe" inside your tabset.
hugebrush at 2007-7-7 0:19:14 > top of Java-index,Development Tools,Java Tools...