| NetUI Tag Library Documentation (Version 1.0.1) | ||||||
DETAIL: Syntax | Description | Attributes | Example | Tag Info |
FRAMES NO FRAMES |
Renders an HTML <body> tag with the attributes specified.
Syntax |
<netui:body
[alink="string_alink"]
[background="string_background"]
[bgcolor="string_bgcolor"]
[dir="string_dir"]
[lang="string_lang"]
[link="string_link"]
[onClick="string_onClick"]
[onDblClick="string_onDblClick"]
[onKeyDown="string_onKeyDown"]
[onKeyPress="string_onKeyPress"]
[onKeyUp="string_onKeyUp"]
[onLoad="string_onLoad"]
[onMouseDown="string_onMouseDown"]
[onMouseMove="string_onMouseMove"]
[onMouseOut="string_onMouseOut"]
[onMouseOver="string_onMouseOver"]
[onMouseUp="string_onMouseUp"]
[onUnload="string_onUnload"]
[style="string_style"]
[styleClass="string_styleClass"]
[tagId="string_tagId"]
[text="string_text"]
[title="string_title"]
[vlink="string_vlink"] >
... JSP content ...
</netui:body>
Description |
Renders an HTML <body> tag with the attributes specified.
Attributes | ||
alink |
The color of text marking hypertext links when selected by the user |
|
background |
The background image of the page. |
|
bgcolor |
The background color of the page. |
|
dir |
Specifies the direction of text. ( LTR | RTL ) |
|
lang |
Sets the language code for the base language of an element's attribute values and text content. |
|
link |
The color of text marking unvisited hypertext links of the page |
|
onClick |
The onClick JavaScript event. |
|
onDblClick |
The onDblClick JavaScript event. |
|
onKeyDown |
The onKeyDown JavaScript event. |
|
onKeyPress |
The onKeyPress JavaScript event. |
|
onKeyUp |
The onKeyUp JavaScript event. |
|
onLoad |
The onLoad JavaScript event. |
|
onMouseDown |
The onMouseDown JavaScript event. |
|
onMouseMove |
The onMouseMove JavaScript event. |
|
onMouseOut |
The onMouseOut JavaScript event. |
|
onMouseOver |
The onMouseOver JavaScript event. |
|
onMouseUp |
The onMouseUp JavaScript event. |
|
onUnload |
The onLoad JavaScript event. |
|
style |
Specifies style information for the current element. |
|
styleClass |
The style class (a style sheet selector). |
|
tagId |
String value. Sets the For example, assume that some tag's <netui:textBox tagId="foo" /> Then the following JavaScript function will return the real id attribute rendered in the browser: lookupIdByTagId( "foo", this ) To get a <netui:form> element and all of its children elements in JavaScript, use
the same JavaScript function <netui:form tagId="bar" > Then the following JavaScript function will return the <netui:form> element and its children (packaged as an array). document[lookupIdByTagId( "bar", this )] To retreive the value entered into a <netui:textBox> within the <netui:form> tag, use the following JavaScript expression. document[lookupIdByTagId("bar", this)][lookupIdByTagId("foo", this)].value The second parameter ensures that the JavaScript function
begins its search within the correct Portlet scope. Pass the
JavaScript keyword |
|
text |
The foreground text color of the page. |
|
title |
The title. |
|
vlink |
The color of text marking visited hypertext links of the page |
Tag Information | |
Tag Class | org.apache.beehive.netui.tags.html.Body |
TagExtraInfo Class | None |
Body Content | JSP |
Display Name | None |
|
||||||
DETAIL: Syntax | Description | Attributes | Example | Tag Info |
FRAMES NO FRAMES |