NetUI Tag Library Documentation (Version 1.0.1)

netui
netui:html Tag

Renders an <html> tag.

Syntax

<netui:html
    [dir="string_dir"]
    [documentType="string_doctype"]
    [generateIdScope="string_generateScopeId"]
    [idScope="string_scopeId"]
    [useLocale="boolean_locale"] >
    ... JSP content ...
</netui:html>

Description

Renders an <html> tag.

Attributes
dir
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Specifies the direction of text. (LTR | RTL)
documentType
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Set the document type (html4-loose or xhtml1-transitional) of the document. The default is html4-loose-quirks.
generateIdScope
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Automatically generate a scopeId for this script container.
idScope
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The id that is associated with the script methods.
useLocale
Required: No  |   Type: boolean  |   Supports runtime evaluation / JSP Expression Language: Yes

Sets whether the default locale's language should be used.

Example

In this sample, the <netui:html> tag uses the default locale and the direction of the HTML is left-to-right (LTR).

<netui:html dir="LTR" useLocale="true"  />


Tag Information
Tag Classorg.apache.beehive.netui.tags.html.Html
TagExtraInfo ClassNone
Body ContentJSP
Display NameNone