PropertyColumn
Generic types: | T |
Extends: |
|
No documentation has been provided.
Properties
Name | Type | Description |
---|---|---|
__key inherited from
| string | undefined | Automatically generated. Must be unique. It allows table to have multiple columns with the same field. |
cellClass inherited from
| ((value: any, row: T) => string) | undefined | Cell CSS class factory. The class is applied to |
cellRenderer inherited from
|
| Component to render in table cell. If unspecified, |
cellStyle inherited from
| ((value: any, row: T) => string) | undefined | Cell style factory. The style is applied to |
expansion inherited from
|
| Expansion row renderer. If this property is filled, the cell will have a button to expand. The |
field | keyof T | |
filterable | boolean | undefined | Allow the column to be filtered. Default true. This property is read by |
filterEditor | Type< | Custom component to edit filter. Only relevant if |
formatter |
| Cell value formatter. If undefined, it will follow default setting based on |
groupable | boolean | undefined | Allow the column to be grouped. Default true. This property is read by |
headerRenderer inherited from
|
| Column header renderer. |
label inherited from
| string | undefined | Label for column header. Default is Title Case of the |
resizable inherited from
| boolean | undefined | Allow the column to be resized. Default true |
rowGroupRenderer |
| Consider to use |
sortable | boolean | undefined | Allow the column to be sorted. Default true. |
sticky inherited from
|
| Stick the column horizontally. |
type inherited from
|
| Cue to specify default formatter and text alignment. For example, if the type is DECIMAL than it will have thousand separator and right-aligned |
visible inherited from
| boolean | undefined | Display column in table. Default true. |
width inherited from
| number | undefined | Column width in px. If undefined, it is up to the browser to calculate the optimum size. If you find the browser doesn't calculate it properly, try to increase the value of |