The Row constructor receives the identifier (each identifier must be unique in a table) and an array of values for each column. The values must be of the type specified by the column type. Example: date columns whould have the value as Date objects.
After adding a row to the table, the table
property is set to the table instance.
Also, some table or column properties may be customized per row:
selectable
: A row may be specified as not selectable when table selecion is used.editable
: A row may be set as not editable if the cell is editable.useCellFunction
: If a column has a cell function, specific rows may not use itpossibleValues
: A Map array containing additional values in relation to the column possible values.titles
: A String array containing the tooltip (title attribute) for each cell.Previous: Column properties |
Table of Contents | Next: Customizing the look and feel |