Getting Started
Usages
Columns
API References
ngx-panemu-table / Interface

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 PanemuTableController.

Properties

NameTypeDescription
rowClass
((row: T) => string) | undefined

Row CSS class factory. The class is applied to tr element.

rowRenderer
Signal<TemplateRef<RowRenderer<T>> | undefined> | undefined
rowSelection
boolean | undefined

Enable row selection. Default true

rowStyle
((row: T) => string) | undefined

Row CSS style factory. The style is applied to tr element.