TableValues

A low level Table component that generates the columns in the current row in the table. This component must be wrapped by TableRows .
The component iterates over the columns in the table and automatically renders the column values for the current table row. The columns are wrapped in 'td' tags by default.
The column values are rendered using the renderer returned by the getValueRenderer() method in ITableColumn .

See also: Table , TableView , TablePages , TableRows , TableColumns

Parameters

Name Type Required Default Description
column ITableColumn no   The object representing the current column being rendered.
element String no tr The tag to use to wrap the column values in.
class String no The CSS class that will be applied to each table value <td>

Body: removed

Informal parameters: allowed

Reserved parameters: none

Examples