| Prev | Next | HTML Verbs > html.table > html.table.render |
html.table.render
| Syntax |
html.table.render (adrTable)
|
| Params |
adrTable is the address of a table created with html.table.new.
|
| Action |
Renders the specified table.
|
| Returns |
A string, depending on which rendering method was specified when creating the table. By default, the returned string contains an HTML rendering.
|
| Examples |
local (adr=html.table.new());html.table.addColumn(adr, "Foo Column");html.table.addRow(adr)^.cells={"Foo"};html.table.render (adr) » <table border="0" cellspacing="0" cellpadding="0">\r\t<tr>\r\t\t<td align="left">...
|
| Notes |
This verb is new in Frontier 6.1. After rendering a table, it should be deleted, via html.table.delete, if it won't be used again.
|
| See Also |
html.table.new
|
| Prev | Next | HTML Verbs > html.table > html.table.render |