html.table.addRow

Syntax html.table.addRow (adrTable)

Params adrTable is the address of a table created with html.table.new that you want to add a row to.

Action Creates storage for a new row in the table.

Returns The address of the row.

Examples local (adr=html.table.new ());html.table.addRow (adr)

   » @system.temp.html.tables.["100"].rows.["00001"]

local (adr=html.table.new ());local (adrRow=html.table.addRow (adr));adrRow^.cells = {1, 2, "Foo", clock.now ()}

   » {1, 2, "Foo", "11/11/99; 5:28:59 PM"}

Notes To add content to the row, store a list in the cells item, as in the second example.

This verb is new in Frontier 6.1.

See Also html.table.new

html.table.addColumn

Discuss