1-44 Oracle Fusion Middleware PLSQL Web Toolkit Reference
1.87 htp.tableRowOpen, htp.tableRowClose
This generates the TR and TR tags, which inserts a new row in an HTML table. Table 1–86
describes the properties of htp.tableRowOpen, htp.tableRowClose.
1.88 htp.teletype
This generates the TT and TT tags, which direct the browser to render the text they surround in a fixed width typewriter font, for example, the courier font.
Table 1–87 describes the properties of htp.teletype.
1.89 htp.title
This generates the TITLE and TITLE tags, which specify the text to display in the titlebar of the browser window.
Table 1–88 describes the properties of htp.title.
Table 1–86 htp.tableRowOpen, htp.tableRowClose
Properties Definitions
Syntax: htp.tableRowOpen
calign in
varchar2 DEFAULT NULL
cvalign in
varchar2 DEFAULT NULL
cdp in
varchar2 DEFAULT NULL
cnowrap in
varchar2 DEFAULT NULL
cattributes in
varchar2 DEFAULT NULL;
htf.tableRowOpen calign, cvalign,cdp, cnowrap, cattributes return varchar2;
htp.tableRowClose; htp.tableRowClose return varchar2;
Parameters: calign - the value for the ALIGN attribute.
cvalign - the value for the VALIGN attribute. cdp - the value for the DP attribute.
cnowrap - if the value of this parameter is not NULL, the NOWRAP attribute is added to the tag.
cattributes - other attributes to be included as-is in the tag. Generates:
TR ALIGN=calign VALIGN=cvalign DP=cdp NOWRAP catttributes TR
Table 1–87 htp.teletype
Properties Definitions
Syntax: htp.teletype
ctext in varchar2
cattributes in
varchar2 DEFAULT NULL;
htf.teletype ctext, cattributes return varchar2; Parameters:
ctext - the text to render in a fixed width typewriter font. cattributes - other attributes to be included as-is in the tag.
Generates: TT cattributesctextTT
The htp and htf Packages 1-45
1.90 htp.ulistOpen, htp.ulistClose
This generates the UL and UL tags, which define an unordered list. An unordered list presents items with bullets. Add list items with
htp.listItem .
Table 1–89 describes the properties of htp.ulistOpen, htp.ulistClose.
1.91 htp.underline