RelationshipInHtmlTableProps
RelationshipInHtmlTableProps
props are used for components that will render the contents of the two Tables
linked by a Relationship
as an HTML table, such as the RelationshipInHtmlTable
component.
{
relationshipId: Id;
relationships?: RelationshipsOrRelationshipsId;
editable?: boolean;
customCells?: Ids | {[cellId: Id]: string | CustomCell};
}
Type | Description | |
---|---|---|
relationshipId | Id | The |
relationships? | RelationshipsOrRelationshipsId | The |
editable? | boolean | Whether the Cells should be editable. This affects the default |
customCells? | Ids | {[cellId: Id]: string | CustomCell} | An optional list of dotted 'tableId.cellId' string pairs to use for rendering a prescribed set of the relationship |
Note the use of dotted 'tableId.cellId' string pairs when specifying custom rendering for the cells in this table, since Cells from both the relationship's 'local' and 'remote' Table
objects can be rendered and need to be distinguished.
Since
v4.1.0