Overview of JSON configuration points – Mobile View
In your editor, you will paste a JSON object
{ … }.
Each line is optional: keep only the ones you need.
| Key | Type | What does it do? | When to use it? | Example |
|---|---|---|---|---|
autoDownload |
bool |
Downloads data as soon as the view opens. | ✔ If you want the list to load automatically. ✘ If you prefer to click “Refresh”. |
"autoDownload": true |
expandAllGroups |
bool |
Opens (true) or collapses (false) all tab/section groups in the record. | ✔ To display everything at once (handy while entering data). | "expandAllGroups": true |
shortcut |
bool |
Offers a shortcut to this view on the phone’s home screen. | ✔ If the view is opened several times a day. | "shortcut": true |
createOnly |
bool |
Lands directly on the Create form instead of the list. | ✔ For an “always create” workflow (e.g., expense reports). | "createOnly": true |
disableLinkAccess |
array<number> |
Prevents navigation via specific link fields (you stay in the current view). | ✔ If you don’t want the user to leave the record. | "disableLinkAccess": [301, 302] |
cardView |
object |
Customizes the card view display. | ✔ For a compact, card-style list. | see in the article |