Hello dear developers.
I have a field in a DataSource of type Array. How do I create a Criterion that checks if there is a XXX value in this field. I tried OperatorId.CONTAINS and OperatorId.ICONTAINS and OperatorId.EQUALS, but they don't work.
In the List Grid, this field is invisible and I need to set the filter programmatically.
If I make the field visible and enter the value I need into the filter field, then it is filtered as it should be.
In this case, the Criteria value for the ListBox is
criteria {
fieldName: "users"
operator: "iContains"
value: "266"
}
I have a field in a DataSource of type Array. How do I create a Criterion that checks if there is a XXX value in this field. I tried OperatorId.CONTAINS and OperatorId.ICONTAINS and OperatorId.EQUALS, but they don't work.
In the List Grid, this field is invisible and I need to set the filter programmatically.
If I make the field visible and enter the value I need into the filter field, then it is filtered as it should be.
In this case, the Criteria value for the ListBox is
criteria {
fieldName: "users"
operator: "iContains"
value: "266"
}
Comment