I would like to be able to use custom made filters on the dashboard for the Record List dashlet.
According to this Github thread such a feature via the UI isn't planned and you need to code it: https://github.com/espocrm/espocrm/issues/484
The instructions on how to do so appear incomplete as far as I can tell. This page gives the most useful information: https://devcrm.it/custom-filters
This was helpful for making filters for Text strings. But not very useful for dates. Specifically I would like something like what is discussed here: https://forum.espocrm.com/forum/gene...7287#post47287
But the instructions look incomplete. Exactly what file do you put this code into?
I have this in custom/Espo/Custom/Resources/metadata/clientDefs/Opportunity.json for example. It doesn't do anything.
Only the instructions at devcrm.it work. But again, this is not helpful for dates. It's also not a 1 to 1 match with the user made filters (which I would like).
Any help would be appreciated.
According to this Github thread such a feature via the UI isn't planned and you need to code it: https://github.com/espocrm/espocrm/issues/484
The instructions on how to do so appear incomplete as far as I can tell. This page gives the most useful information: https://devcrm.it/custom-filters
This was helpful for making filters for Text strings. But not very useful for dates. Specifically I would like something like what is discussed here: https://forum.espocrm.com/forum/gene...7287#post47287
But the instructions look incomplete. Exactly what file do you put this code into?
Code:
"defaultFilterData": { "advanced": { "closeDate": { "type": "lastXDays", "number": 45, "value": 45 } } }
I have this in custom/Espo/Custom/Resources/metadata/clientDefs/Opportunity.json for example. It doesn't do anything.
Only the instructions at devcrm.it work. But again, this is not helpful for dates. It's also not a 1 to 1 match with the user made filters (which I would like).
Any help would be appreciated.
Comment