Espocrm V8.4
Can anyone tell me how to change the default order in which activities are displayed in side and bottom panels?
I would like to see activities in ascending date order - i.e the soonest start date will be first in the list. At present, both history and activities are shown in descending date order. That's fine for history but not upcoming activites.
Interestingly activities are shown in ascending order in the dashlet:
I've tried adding the following code to the .../custom/resources/metadata/clientDefs/Contact.json file without success:
"relationshipPanels":{
Can anyone tell me how to change the default order in which activities are displayed in side and bottom panels?
I would like to see activities in ascending date order - i.e the soonest start date will be first in the list. At present, both history and activities are shown in descending date order. That's fine for history but not upcoming activites.
Interestingly activities are shown in ascending order in the dashlet:
I've tried adding the following code to the .../custom/resources/metadata/clientDefs/Contact.json file without success:
"relationshipPanels":{
"activities": {
"filterList": [
"all"
],
"orderBy": "dateStart",
"asc": true
"all"
],
"orderBy": "dateStart",
"asc": true
}
Comment