Customize the display in card mode (list view).
Choose whether to show field labels, insert a title field, and display secondary values and/or an image.
Property | Type | Role |
---|---|---|
showFieldsTitles |
bool | Displays (true ) or hides (false ) the field labels. |
title |
number | ID of the field used as the main title. |
value1…value4 |
number | IDs of the fields to be displayed as secondary values. |
⚠️ Only title
is truly required; remove unnecessary lines if you don’t need value3
, value4
, or image
and replace the IDs with those of your own fields.
➡️ Add this block in the editor:
{ "cardView": { "showFieldsTitles": true, "title": 12345, "value1": 23456, "value2": 34567, "value3": 45678, "value4": 56789, "image": 67890 } }
📱 User result in the mobile app
- A compact and visual list: title highlighted, key info visible at a glance, thumbnail on the left (if defined).
ℹ️ General reminders
- Values must respect the defined types (bool, number, array, object).