DataTableColumn
DataTableColumn properties overview
| Property name | Type | Description |
|---|---|---|
|
|
Defines the type of the column. |
|
|
The id of the column. |
|
|
Translation key for the column header name. |
|
|
Indicates if the column is sortable. |
|
|
Indicates if the column is filterable. |
|
|
Defines which type of filter is used. |
|
|
Defines the group set in which the following column is available. Additionally, the |
|
|
Allows customization of the date format. Uses Angular DatePipe format. |
export const enum ColumnType {
STRING = 'STRING',
NUMBER = 'NUMBER',
DATE = 'DATE',
RELATIVE_DATE = 'RELATIVE_DATE',
TRANSLATION_KEY = 'TRANSLATION_KEY',
}
export declare enum FilterType {
EQUAL = "EQUAL",
TRUTHY = "TRUTHY"
}
| Type | Description |
|---|---|
|
Will create a set of unique values for filtering. |
|
Will always have two filter options which result in empty and not empty. |