Yes, it is possible. We can use simple HTML in the xhtml file. I tried. It works well. below I gave my code.
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"> <f:view locale="#{facesContext.externalContext.requestLocale}"> <h:head> <title> <h:outputText value="your application title"></h:outputText> </title> <style type="text/css"> #imagepgframe { width: 100%; height: 100%; position: absolute; } #wrap { width: 100%; position: absolute; top: 0px; left: 0; bottom: 0; overflow-y: hidden; overflow-x: hidden; } </style> </h:head> <h:body> <h:form> <div id="wrap"> <iframe id="imagepgframe" name="imagepgframe" frameborder="0" scrolling="auto" src="#{bean.iframeUrl}"> <p>Your browser does not support iframes.</p> </iframe> </div> </h:form> </h:body>
Thanks.
source share