Tomahawk documentBody tag

This tag is used to encapsulate the body of the document . It is equivalent to the HTML tag.

Tomahawk documentBody tag

Tomahawk documentBody tag

        

This tag is used to encapsulate the body of the document . It is equivalent to the HTML <body> tag. We can use this tag in place of <body> tag in our JSP page. It has one attribute "state" that is used to specify the state stored by this component. It also provides some attributes that supports the java script code to be invoked when the particular event occurs.

Code Description : 

<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>

<f:view>
   <t:document>
     <t:documentHead>
        <meta http-equiv="Content-Type" content="text/html; 
              charset=iso-8859-1">
        <title>t:documentBody example</title>
     </t:documentHead>
     <t:documentBody >
        <h:form>
            <t:outputText value="The documentBody tag is 
                          equivalent to HTML <body> tag."/>
        </h:form>
     </t:documentBody>
   </t:document>
</f:view>

Rendered Output :

Html Source Code :

<html>
  <head>
      <meta http-equiv="Content-Type" content="text/html;
            charset=iso-8859-1">
      <title>t:documentBody example</title>
  </head>
  <body>
      <form id="_idJsp3" name="_idJsp3" method="post" 
            action="/tomahawk_tags/pages/documentBody.jsf" 
            enctype="application/x-www-form-urlencoded">
The documentBody tag is equivalent to HTML &lt;body&gt; tag.
<input type="hidden" name="_idJsp3_SUBMIT" value="1" />
<input type="hidden" name="javax.faces.ViewState" 
id="javax.faces.ViewState" value="rO0ABXVyABNbTGphdmEubGFuZ
y5PYmplY3Q7kM5YnxBzKWwCAAB4cAAAAANzcgBHb3JnLmFwYWNoZS5teWZh
Y2VzLmFwcGxpY2F0aW9uLlRyZWVTdHJ1Y3R1cmVNYW5hZ2VyJFRyZWVTdHJ
1Y3RDb21wb25lbnRGWRfYnEr2zwIABFsACV9jaGlsZHJlbnQASltMb3JnL2
FwYWNoZS9teWZhY2VzL2FwcGxpY2F0aW9uL1RyZWVTdHJ1Y3R1cmVNY" />
      </form>
  </body>
</html>

This tag contains attributes given below :

  • state :This attribute is used to specify the state stored by this component.
  • onload : It is used for Java Script code to be invoked when the element is loaded. 
  • onunload : It is used for Java Script code to be invoked when the element is unloaded. 
  • onresize : It is used for Java Script code to be invoked when the element is resized. 
  • onkeypress : It is used for Java Script code to be invoked when key is pressed in the element.