MuiLookupView#

@palmyralabs/rt-forms-mui · form/MuiLookupView.tsx

Overview#

Read-only foreign-key display — counterpart to MuiServerLookup. Resolves the stored id against lookupOptions and renders the referenced record’s label.

Props — ILookupViewOptions & TextViewAttributeDefinition#

Common field props plus:

Prop Type Purpose
lookupOptions { idAttribute, labelAttribute, endPoint?, ... } How to resolve the id into a displayable label

Plus view-mode props (prefix, suffix).

Example#

<MuiLookupView
  attribute="manufacturerId"
  label="Manufacturer"
  lookupOptions={{
    endPoint: '/mstManufacturer',
    idAttribute: 'id',
    labelAttribute: 'name',
  }}
/>