|
|
|
|
useFilter | boolean | in | | false |
Wheather to use a filter form or not.
|
|
postFilterBlock |
...org.apache.tapestry.components.Block | custom | | null |
Block to include after filter.
|
|
tableModel |
...stry.contrib.table.model.ITableModel | custom | | null |
The model describing the data to be presented by the Table component.
This parameter is optional, but either the 'tableModel' or both
'source' and 'columns' parameters must be provided.
|
|
source | java.lang.Object | custom | | null |
The data to be displayed by the component. This parameter is available as
an alternative to tableModel and must be used in combination with the
'columns' parameter.
The parameter must be an array of values, a collection, an iterator,
or an object implementing the IBasicTableModel interface.
|
|
columns | java.lang.Object | custom | | null |
The table columns to be displayed.
The parameter must be an array, a list, or an Iterator of ITableColumn objects,
an ITableColumnModel, or a String describing the columns (see documentation).
|
|
pageSize | int | custom | | 0 |
The number of records displayed per page when source/columns are used.
The page size is 10 by default.
|
|
initialSortColumn | java.lang.String | custom | | null |
The id of the column to initially sort the table by.
The column is set to null by default, i.e. there is no sorting.
|
|
initialSortOrder | boolean | custom | | false |
The order of the initial sorting.
Set this parameter to 'false' to sort in an ascending order
and to 'true' to sort in a descending one.
|
|
tableSessionStateManager |
...able.model.ITableSessionStateManager | custom | | null |
The manager that controls what part of the table model will be stored in
the session.
|
|
tableSessionStoreManager |
...able.model.ITableSessionStoreManager | custom | | null |
The manager that controls where the session data will be stored.
|
|
columnSettingsContainer | org.apache.tapestry.IComponent | custom | | container |
The component where Block and messages are pulled from when using source/columns.
|
|
pagesDisplayed | int | custom | | 0 |
The maximum number of pages that will be displayed in the list of table pages.
By default, only seven of the pages around the current one are shown.
|
|
column |
...try.contrib.table.model.ITableColumn | custom | | null |
The column that is being rendered. This value is updated when both
the column headers and column values are rendered.
|
|
row | Object | custom | | null |
The row that is being rendered. This value is null when
the column headers are rendered.
|
|
arrowUpAsset | org.apache.tapestry.IAsset | in | | null |
The image to use to describe a column sorted in an ascending order.
|
|
arrowDownAsset | org.apache.tapestry.IAsset | in | | null |
The image to use to describe a column sorted in a descending order.
|
|
pagesClass | java.lang.String | custom | | null | The CSS class of the table pages |
|
columnsClass | java.lang.String | custom | | null | The CSS class of the table columns |
|
rowsClass | java.lang.String | custom | | null | The CSS class of the table rows |
|
valuesClass | java.lang.String | custom | | null | The CSS class of the table values |