docs/docs/reference/admin-ui-api/custom-table-components/data-table-component-config.mdx
Configures a CustomDetailComponent to be placed in the given location.
interface DataTableComponentConfig {
tableId: DataTableLocationId;
columnId: DataTableColumnId;
component: Type<CustomColumnComponent>;
providers?: Provider[];
}
<MemberInfo kind="property" type={DataTableLocationId} />
The location in the UI where the custom component should be placed.
<MemberInfo kind="property" type={DataTableColumnId} />
The column in the table where the custom component should be placed.
<MemberInfo kind="property" type={Type<<a href='/reference/admin-ui-api/custom-table-components/custom-column-component#customcolumncomponent'>CustomColumnComponent</a>>} />
The component to render in the table cell. This component should implement the CustomColumnComponent interface.
<MemberInfo kind="property" type={Provider[]} />