Control API for Basic Controls
content
Creates a scripting variable which provides the rendering context for
the following tags. It is a plain HTML tag.
|
attribute
|
req. |
values |
default |
case sens. |
JSP taglib |
classlib |
| id |
yes |
String |
none |
yes |
id="myContent" |
|
Example
<hbj:content id="myContent">
...
</hbj:content>
|
Back to top
document
Renders the root tag of the document (e.g. <html> or <wml>)
depending on the markup language used. It is a plain HTML tag with no
attributes.
|
attribute
|
req. |
values |
default |
case sens. |
JSP taglib |
classlib |
| id |
yes |
|
none |
yes |
|
setDocumentId("myContent") |
| title |
no |
String |
none |
no |
|
setTitle("SAPPortals") |
Example
<hbj:content id="myContent">
<hbj:document>
...
</hbj:document>
</hbj:content>
|
Back to top
documentBody
Renders <body> section of the document and attaches the appropriate
style class. It is a plain HTML tag with no attributes.
Example
<hbj:content id="myContent">
<hbj:document>
<hbj:documentBody>
...
</hbj:documentBody>
</hbj:document>
</hbj:content>
|
Back to top
documentHead
Renders <head> section of the document and includes the necessary
style sheets and scripts. It is a plain HTML tag. In the documentHead
a nested META
element (standard HTML) can be used. With META
element information about the document (name, content, scheme, http-equiv)
can be specified.
|
attribute
|
req. |
values |
default |
case sens. |
JSP taglib |
classlib |
| title |
no |
String |
none |
no |
title="SAPPortals" |
see 'document' |
Example
<hbj:content id="myContent">
<hbj:document>
<hbj:documentHead title="SAPPortals">
<meta name="description" content="Introduction page">
<meta name="author" content="SAPPortals">
<meta name="date" content="Jan. 2002">
...
</hbj:documentHead>
<hbj:documentBody>
...
</hbj:documentBody>
</hbj:document>
</hbj:content>
|
Back to top
page
Represents a complete HTML page consisting of tags <html>, <head>
and <body> and includes the necessary style sheets and scripts.
It is a plain HTML tag.
Important Note:
If JavaScripts are used (for 'onClientClick' events) the page tag
is necessary for the renderer to place the JavaScripts at the end of
the page.
|
attribute
|
req. |
values |
default |
case sens. |
JSP taglib |
classlib |
| title |
no |
String |
none |
no |
title="SAPPortals" |
|
Example
<hbj:content id="myContent">
<hbj:page title="SAPPortals">
...
</hbj:page>
</hbj:content>
|
Back to top
|