| |||||||
FRAMES NO FRAMES |
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>
tag that uses attributes indicated by the attributes you specify with
the webuijsf:html
tag in the JSP page. 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 Class | com.sun.webui.jsf.component.HtmlTag |
TagExtraInfo Class | None |
Body Content | JSP |
Display Name | None |
Attributes | ||||
Name | Required | Request-time | Type | Description |
binding | false | false | java.lang.String | A ValueExpression that resolves to the UIComponent that corresponds to this tag. This binding allows the Java bean that contains the UIComponent to manipulate the UIComponent, its properties, and its children. |
lang | false | false | java.lang.String | Sets the language code for this document |
xmlns | false | false | java.lang.String | Defines the XML namespace attribute. Default value is: http://www.w3.org/1999/xhtml |
rendered | false | false | java.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. |
id | false | true | java.lang.String | No Description |
Variables | No Variables Defined. |
| |||||||
FRAMES NO FRAMES |