| |||||||
FRAMES NO FRAMES |
Use the webuijsf:link
tag to insert header
references to
other documents related to this HTML page. The webuijsf:link
tag must be used inside the webuijsf:head
tag, and can be used
multiple times for references to multiple documents. A common use for
the webuijsf:link
tag is to link to an external stylesheet, but
it can also be used to provide information about the document's
relationship to other documents. There are a
number of useful defaults making it simpler to specify an HTML link
using this tag.
<link>
element, along with any
attributes
specified through the webuijsf:link
tag attributes. <webuijsf:page>
<webuijsf:html>
<webuijsf:head id="blah"
title="hyperlink test page">
<webuijsf:link
url="/context-relative-path/tomyfile/stylesheet.css">
</webuijsf:head>
<webuijsf:body>
</webuijsf:body>
</webuijsf:html>
</webuijsf:page>
Tag Information | |
Tag Class | com.sun.webui.jsf.component.LinkTag |
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 attribute allows the Java bean that contains the UIComponent to manipulate the UIComponent, its properties, and its children. |
type | false | false | java.lang.String | Specifies the MIME type of the target URL. Default is: "text/css" |
rel | false | false | java.lang.String | Defines the relationship between the current document and the targeted document. Default is "stylesheet". Other possible values are described at w3.org. |
media | false | false | java.lang.String | Specifies the type of display device for which the referenced document is designed. The media attribute is useful for specifying different stylesheets for print and viewing on a screen. The default value is "screen". |
url | false | false | java.lang.String | The absolute or relative target URL of the resource. |
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. |
charset | false | false | java.lang.String | Defines the character (charset) encoding of the target URL. Default value is "ISO-8859-1". |
urlLang | false | false | java.lang.String | Defines the ISO language code of the human language used in the target URL file. For example, valid values might be en, fr, es. |
id | false | true | java.lang.String | No Description |
Variables | No Variables Defined. |
| |||||||
FRAMES NO FRAMES |