webuijsf
Tag html


Use the webuijsf:html tag to create an <html> element in the rendered HTML page. The webuijsf:html tag must be used as a child of the webuijsf:page tag, following immediately after the webuijsf:page tag.  This tag is required for pages that are not in a portal enviroment and not subviews.

HTML Elements and Layout

The rendered HTML page includes an <html> tag that uses attributes indicated by the attributes you specify with the webuijsf:html tag in the JSP page.

Theme Identifiers

None.

Client Side Javascript Functions

None.

Examples

Example 1: Using a webuijsf:html tag

<webuijsf:page>
    <webuijsf:html>
       <webuijsf:head id="blah" title="hyperlink test page" />
       <webuijsf:body>
          <webuijsf:form id="form1">
               <webuijsf:hyperlink  id="hyperlinkSubmitsPage" 
                           label="#{HyperlinkBean.label}"
                           action="#{HyperlinkBean.determineWhatToDoFunction}" />
           </webuijsf:form>
      </webuijsf:body>
    </webuijsf:html>
</webuijsf:page>





Tag Information
Tag Classcom.sun.webui.jsf.component.HtmlTag
TagExtraInfo ClassNone
Body ContentJSP
Display NameNone

Attributes
NameRequiredRequest-timeTypeDescription
bindingfalsefalsejava.lang.String A ValueExpression that resolves to the UIComponent that corresponds to this tag. This attribute allows the Java bean that contains the UIComponent to manipulate the UIComponent, its properties, and its children.
langfalsefalsejava.lang.String

Sets the language code for this document

xmlnsfalsefalsejava.lang.String

Defines the XML namespace attribute. Default value is: http://www.w3.org/1999/xhtml

renderedfalsefalsejava.lang.String Use the rendered attribute to indicate whether the HTML code for the component should be included in the rendered HTML page. If set to false, the rendered HTML page does not include the HTML for the component. If the component is not rendered, it is also not processed on any subsequent form submission.
idfalsetruejava.lang.StringNo Description

Variables
No Variables Defined.


Output Generated by Tag Library Documentation Generator. Java, JSP, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 2002-4 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054, U.S.A. All Rights Reserved.