Queue View
Note:
- This configuration is MUI-specific.
- The Queue View is read-only.
General
- Read-only queue view uses
queuePrimaryText
andqueueSecondaryText
to renderqueuePrimaryText
andqueueSecondaryText
are configured in the same way as title, subTitle, etc., including both the content and the conditional renderingrecordActions
for each queue view entry is recommended to use iconic actions with Material UI icons. (the label is the icon name.)
- Read-only queue view without
queuePrimaryText
andqueueSecondaryText
will be displayed as an empty row.
Status
Release Available | Status | Framework Name |
---|---|---|
2.9 | Current | MUI |
Implementation Example
Code JSON
"appearance": { "queuePrimaryText": "$this.attr(Name);", "queueSecondaryText": "$this.attr(Industry); — $this.attr(AnnualRevenue, currency);", ... } "recordActions": [{ "name": "preview", "actionType": "normal", "appearance": { "label": "visibility", "style": "iconic" } }, { "name": "upload", "actionType": "upload", "appearance": { "label": "cloud_upload", "style": "iconic" } }]