Hi, is there any possibility to set up "My Calls" list in a way that it will show not only the name, but also the account it is related to?
Announcement
Collapse
No announcement yet.
My Calls
Collapse
X
-
Hi
source file - application/Espo/Modules/Crm/Resources/metadata/dashlets/Calls.json
You can add account field there, but it's not upgrade safe.
Or you can create a file custom/Espo/Custom/Resources/metadata/dashlets/Calls.json and add field there
Code:{ "options": { "defaults": { "expandedLayout": { "rows": [ [ { "name": "name", "link": true }, { "name": "account" } ], [ { "name": "dateStart" } ] ] } } } }
Last edited by tanya; 01-20-2017, 09:07 AM.
Comment