I have made a Primary Filter for Assigned User lookup values, added it to the filter list and it is working fine.
But I cannot set it as default filter when used with child entity, no matter what.
I have tried these at User.json:
"filterList": [
{
"name": "ApprovingManager"
}
],
"selectDefaultFilters": {
"filter": "ApprovingManager"
},
"defaultFilterData": {
"primary": "ApprovingManager"
}
Tried also in child entity clientDefs:
"relationshipPanels": {
"assignedUser": {
"layout": null,
"selectPrimaryFilterName": "ApprovingManager",
"filterList": ["ApprovingManager"]
}
}
The assignedUser relationship is not in the list of relationships for an entity, so whats the name of the relationship ?
Thanks for all.
But I cannot set it as default filter when used with child entity, no matter what.
I have tried these at User.json:
"filterList": [
{
"name": "ApprovingManager"
}
],
"selectDefaultFilters": {
"filter": "ApprovingManager"
},
"defaultFilterData": {
"primary": "ApprovingManager"
}
Tried also in child entity clientDefs:
"relationshipPanels": {
"assignedUser": {
"layout": null,
"selectPrimaryFilterName": "ApprovingManager",
"filterList": ["ApprovingManager"]
}
}
The assignedUser relationship is not in the list of relationships for an entity, so whats the name of the relationship ?
Thanks for all.
Comment