Question
Multiple filter in dropdown field in mobile application
12:46 Nov 11, 2021
Hi Community,
In mobile, I found this sample below in Academy on how to add filter to dropdown field. My question is how to add mulitple filter to dropdown field. I tried below syntax but it is not working
addFilter: [
{
property: "IsChief",
value: true
},
{
property: "IsChief2",
value: true
},
]
Like
1 comments
17:41 Nov 11, 2021
Hi Fulgen,
Please try to use it in this way :
addFilter: {
type: Terrasoft.FilterTypes.Group,
subfilters: [{...}, {...}]
}
Best Regards,
Bogdan L.
Show all comments