The htp and htf Packages 1-31
1.58 htp.listingOpen, htp.listingClose
This generates the LISTING and LISTING tags, which mark a section of fixed-width text in the body of an HTML page.
Table 1–57 describes the properties of htp.listingOpen, htp.listingClose.
1.59 htp.listItem
This generates the LI tag, which indicates a list item. Table 1–58
describes the properties of htp.listItem.
1.60 htp.mailto
This generates the A tag with the HREF set to mailto prepended to the mail address argument.
Table 1–59 describes the properties of htp.mailto.
Table 1–57 htp.listingOpen, htp.listingClose
Properties Definitions
Syntax: htp.listingOpen;
htf.listingOpen return varchar2; htp.listingClose;
htf.listingClose return varchar2; Parameters:
None. Generates:
LISTING LISTING
Table 1–58 htp.listltem
Properties Definitions
Syntax: htp.listItem
ctext in
varchar2 DEFAULT NULL
cclear in
varchar2 DEFAULT NULL
cdingbat in
varchar2 DEFAULT NULL
csrc in
varchar2 DEFAULT NULL
cattributes in
varchar2 DEFAULT NULL;
htf.listItem ctext, cclear, cdingbat, csrc, cattributes return varchar2;
Parameters: ctext - the text for the list item.
cclear - the value for the CLEAR attribute. cdingbat - the value for the DINGBAT attribute.
csrc - the value for the SRC attribute. cattributes - other attributes to be included as-is in the tag.
Generates: LI CLEAR=cclear DINGBAT=cdingbat SRC=csrc cattributesctext
1-32 Oracle Fusion Middleware PLSQL Web Toolkit Reference
1.61 htp.mapOpen, htp.mapClose
This generates the MAP and MAP tags, which mark a set of regions in a client-side image map.
Table 1–60 describes the properties of htp.mapOpen, htp.mapClose.
1.62 htp.menulistOpen, htp.menulistClose
This generates the MENU and MENU tags, which create a list that presents one line for each item. The items in the list appear more compact than an unordered list.
The htp.listItem
defines the list items in a menu list. Table 1–61
describes the properties of htp.menulistOpen, htp.menulistClose.
Table 1–59 htp.mailto
Properties Definitions
Syntax: htp.mailto
caddress in
varchar2 ctext
in varchar2
cname in
varchar2 cattributes
in varchar2
DEFAULT NULL; htf.mailto caddress, ctext, cname, cattributes return varchar2;
Parameters: caddress - the email address of the recipient.
ctext - the clickable portion of the link. cname - the value for the NAME attribute.
cattributes - other attributes to be included as-is in the tag. Generates:
A HREF=mailto:caddress NAME=cname cattributesctextA Example:
htp.mailtopreswhite_house.gov,Send Email to the President; generates:
A HREF=mailto:preswhite_house.govSend Email to the PresidentA
Table 1–60 htp.mapOpen, htp.mapClose
Properties Definitions
Syntax: htp.mapOpen
cname in
varchar2 cattributes
in varchar2
DEFAULT NULL; htf.mapOpencname, cattributes return varchar2;
htp.mapClose; htf.mapClose return varchar2;
Parameters: cname - the value for the NAME attribute.
cattributes - other attributes to be included as-is in the tag Generates:
MAP NAME=cname cattributes MAP
The htp and htf Packages 1-33
1.63 htp.meta