The JSON code editor in the mobile view allows you to adjust the behavior of a view in the TimeTonic mobile app. This overview summarizes the available configuration keys: what they do, when to use them, and an example for each.
In your editor, you paste a JSON object
{ … }. Each line is optional: keep only those that interest you.Available Configuration Keys
Each key name links to its detailed article.
| Key | Type | What does it do? | When to use it? | Example |
|---|---|---|---|---|
| autoDownload | bool |
Downloads data as soon as the view opens. |
Use it if you want the list to load automatically. Avoid if you prefer to click "Refresh". |
"autoDownload": true |
| expandAllGroups | bool |
Opens (true) or collapses (false) all tab or section groups in the record. |
Use it to display everything at once (useful during data entry). | "expandAllGroups": true |
| shortcut | bool |
Offers a shortcut to this view on the smartphone home screen. | Use it if the view is opened several times a day. | "shortcut": true |
| createOnly | bool |
Directly opens the Create form instead of the list. | Use it for a "always create" usage (e.g., expense reports). | "createOnly": true |
| disableLinkAccess | array<number> |
Prevents navigation via certain link fields: staying in the current view. | Use it if you don't want the user to leave the record. | "disableLinkAccess": [301, 302] |
| cardView | object |
Customizes the display in card mode. | Use it for a compact "cards" style list. | See in the article |
Learn More
Step-by-step Mobile View Configuration
The complete guide to entering and applying your JSON configuration in the editor.