<netui:html> Tag

Renders an <html> tag.

Syntax

<netui:html
    [dir="dir"]
    [documentType="documentType"]
    [generateIdScope="generateIdScope"]
    [idScope="idScope"]
    [useLocale="useLocale"] />

Description

Renders an <html> tag.

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

Specifies the direction of text. (LTR | RTL)
documentType
Required: No  |   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  |   Supports runtime evaluation / JSP Expression Language: Yes

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

The id that is associated with the script methods.
useLocale
Required: No  |   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"  />