netui
netui:html Tag
Renders an <html> tag.
<netui:html
[dir="string_dir"]
[documentType="string_doctype"]
[generateIdScope="string_generateScopeId"]
[idScope="string_scopeId"]
[useLocale="boolean_locale"] >
... JSP content ...
</netui:html>
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. |
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 Class | org.apache.beehive.netui.tags.html.Html |
TagExtraInfo Class | None |
Body Content | JSP |
Display Name | None |