RowOptions
Generic types: | T |
Options related to table row such as enable or disable rowSelection, function to generate dynamic row class and function to generate dynamic row style. It is used as one of parameter to create
.
Properties
Name | Type | Description |
---|---|---|
rowClass | ((row: T) => string) | undefined | Row CSS class factory. The class is applied to |
rowRenderer | Signal<TemplateRef< | It provides a way to build your own tr-td tags in the table body for example if you need to implement cell or row spanning. |
rowSelection | boolean | undefined | Enable row selection. Default true |
rowStyle | ((row: T) => string) | undefined | Row CSS style factory. The style is applied to |