This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/Modules/Crm/Resources/metadata/dashlets/Activities.json
T
2018-03-20 15:52:09 +02:00

55 lines
1.5 KiB
JSON

{
"view":"crm:views/dashlets/activities",
"options": {
"view": "crm:views/dashlets/options/activities",
"fields": {
"title": {
"type": "varchar",
"required": true
},
"autorefreshInterval": {
"type": "enumFloat",
"options": [0, 0.5, 1, 2, 5, 10]
},
"enabledScopeList": {
"type": "multiEnum",
"translation": "Global.scopeNamesPlural",
"required": true
},
"displayRecords": {
"type": "enumInt",
"options": [3,4,5,10,15,20,30,50]
},
"futureDays": {
"type": "int",
"min": 0,
"required": true
}
},
"defaults": {
"displayRecords": 10,
"autorefreshInterval": 0.5,
"futureDays": 3,
"enabledScopeList": ["Meeting", "Call", "Task"]
},
"layout": [
{
"rows": [
[
{"name": "title"},
{"name": "autorefreshInterval"}
],
[
{"name": "displayRecords"},
{"name": "enabledScopeList"}
],
[
{"name": "futureDays"},
false
]
]
}
]
}
}