Skip to main content

DataTableComponentConfig

DataTableComponentConfig

Configures a CustomDetailComponent to be placed in the given location.

Signature
interface DataTableComponentConfig {
tableId: DataTableLocationId;
columnId: DataTableColumnId;
component: Type<CustomColumnComponent>;
providers?: Provider[];
}

tableId

property
DataTableLocationId

The location in the UI where the custom component should be placed.

columnId

property
DataTableColumnId

The column in the table where the custom component should be placed.

component

property

The component to render in the table cell. This component should implement the CustomColumnComponent interface.

providers

property
Provider[]