Note: All the hypertext procedures (HTP) shown in this section are also available as hypertext functions (HTF).
Syntax | htp.tableOpen (cborder, calign, cnowrap, cclear, cattributes); |
Purpose | Prints an HTML tag that begins an HTML table. |
Parameters | cborder in varchar2 DEFAULT NULL calign in varchar2 DEFAULT NULL cnowrap in varchar2 DEFAULT NULL cclear in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL; |
Generates | <TABLE BORDER NOWRAP ALIGN="calign" CLEAR="cclear" cattributes> |
Syntax | htp.tableClose; |
Purpose | Prints an HTML tag that ends an HTML table. |
Parameters | none |
Generates | </TABLE> |
Syntax | htp.tableCaption (ccaption, calign, cattributes); |
Purpose | Prints an HTML tag that places a caption in the inserted table. |
Parameters | ccaption in varchar2 DEFAULT NULL calign in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL |
Generates | <CAPTION ALIGN="calign" cattributes>ccaption</CAPTION> |
Syntax | htp.tableRowOpen (calign, cvalign,cdp, cnowrap, cattributes); |
Purpose | Prints an HTML tag that inserts a row tag into a table. |
Parameters | 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 |
Generates | <TR ALIGN="calign" VALIGN="cvalign" DP="cdp" NOWRAP catttributes> |
Syntax | htp.tableRowClose; |
Purpose | Prints an HTML tag that ends a row in a table. |
Parameters | none |
Generates | </TR> |
Syntax | htp.tableHeader (cvalue, calign, cdp, cnowrap, crowspan, ccolspan, cattributes); |
Purpose | Prints an HTML tag that inserts a table header. |
Parameters | cvalue in varchar2 DEFAULT NULL calign in varchar2 DEFAULT NULL cdp in varchar2 DEFAULT NULL cnowrap in varchar2 DEFAULT NULL crowspan in varchar2 DEFAULT NULL ccolspan in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL |
Generates | <TH ALIGN="calign" DP="cdp" ROWSPAN="crowspan" COLSPAN="ccolspan" NOWRAP cattributes>cvalue</TH> |
Syntax | htp.tableData (cvalue, calign, cdp, cnowrap, cattributes); |
Purpose | Prints an HTML tag that inserts data into the rows and columns of a selected table. |
Parameters | cvalue in varchar2 DEFAULT NULL calign in varchar2 DEFAULT NULL cdp in varchar2 DEFAULT NULL cnowrap in varchar2 DEFAULT NULL cattributes in varchar2 DEFAULT NULL |
Generates | <TD ALIGN="calign" DP="cdp" ROWSPAN="crowspan" COLSPAN="ccolspan" NOWRAP cattributes>cvalue</TD> |