Theres a web page I’m making which content is very dynamic and so I’m building it from inside the backing bean.
I would like to add a Java applet to the web page but I could not find the JSF component type to correspond to the <applet> tag.
So My questions are –
- What is the JSF component type for an applet?
- How did you find it? (For similar future searches)
Thanks!
P.S – Just to be clear. An example: <h:PanelGroup> would be HtmlPanelGroup as a java object.
There appears to be a ready-to-use component for that.
Alternatively, you can write your custom component that will output the
<object>tag. It’s relatively easy.