Voici la **traduction en anglais**, en conservant **strictement la structure HTML, les balises, les images, les IDs et la mise en forme**. 👉 Seul le **contenu texte** est traduit. ```html
Customize the display in card view (lists).
Choose to display the title field, insert the title field, and show secondary values and/or an image.
| Property | Type | Role |
|---|---|---|
showFieldsTitles
|
bool | Shows (true) or hides (false) field labels. |
title
|
number | ID of the field used as the main title. |
value1…value4
|
number | IDs of fields displayed as secondary values. |
image
|
number | ID of the image field used as a thumbnail. |
⚠️ Only title is truly required. Remove unnecessary lines if you do not 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
}
}ℹ️ Point of attention when selecting the “Labels” display mode for a linked view in a record.
On the web, the Labels linked view hides all information except the value of a single field.
As a result, the mobile configuration cannot display field titles using "showFieldsTitles": true and can display only one value via "title".
Example:
In a workspace, selecting the Labels view on a record.
“cardView” code snippet in the editor
Preview in the Android mobile application
Linked view: field display
You must configure the linked view as a Tile view or a Table view to display field titles and values.
The Labels view configuration only allows
a single value
via "title":
{
"title": "field_name"
}
📱 Mobile user result
- A compact, visual list: highlighted title, key information visible at a glance, thumbnail on the left if defined.
ℹ️ General reminders
-
Values must respect the specified types (bool, number, array, object).
-
Do not put quotation marks around
true/false. -
A valid JSON object always starts with
{and ends with}. -
Each view can have its own configuration (settings are not global).
```