User Guide
794 Chapter 6: WDDX JavaScript Objects
Parameters
Return value
None.
Usage
Adds a column to every row of the WDDX record set. Initially the new column’s values are set to
NULL.
Example
This example calls the addColumn function:
// create a new record set
rs = new WddxRecordset();
// add a new column
rs.addColumn("NewColumn");
// extend the record set by 3 rows
rs.addRows(3);
// set an element in the first row
// newValue is a previously defined variable
rs.setField(0, "NewColumn", newValue);
addRows
Description
Adds rows to all columns in a WddxRecordset instance.
Syntax
object.addRows( n )
Parameters
Return value
None.
Usage
This function adds the specified number of rows to every column of a WDDX record set.
Initially, the row/column values are set to NULL.
Example
This example calls the addRows function:
Parameter Description
object Instance name of the WddxRecordset object
name Name of the column to add
Parameter Description
object Instance name of the WddxRecordset object
n Integer; number of rows to add