_OPEN_TABLE_ Method

Outputs the <TABLE> tag for the dynamic HTML pages

Syntax

CALL SEND(OBJID,'_OPEN_TABLE_',brdrvalue,table-width, border-color-dark,
border-color-light,background-color, cell-padding, cell-spacing css-class);

Required Arguments

brdrvalue
an optional parameter that specifies the table border thickness.
Type:Character
table-width
an optional parameter that specifies the width of the table cells (as a percentage of the document width).
Type:Character
border-color-dark
an optional parameter that specifies a table cell border color attribute.
Type:Character
border-color-light
an optional parameter that specifies a table cell border color attribute.
Type:Character
background-color
an optional parameter that specifies the background color of the table.
Type:Character
cell-padding
an optional parameter that specifies the spacing inside the table cells.
Type:Character
cell-spacing
an optional parameter that specifies the spacing between the table cells.
Type:Character
css-class
an optional parameter that specifies the label for a cascading style sheet tag.
Type:Character

Details

For more information about the <TABLE> tag, refer to your favorite HTML reference documentation.

Example

CALL SEND (webid, '_OPEN_TABLE_', '3', '50', 'RED', 'YELLOW', 'GRAY', '2', 'mytable');
The following output is produced:
<TABLE BORDER=3 WIDTH=50% BORDERCOLORDARK=RED BORDERCOLORLIGHT=YELLOW BGCOLOR=GRAY
    CELLPADDING=2 CELLSPACING=2 CLASS="mytable">