I'm currently trying to filter the results of a fetch operation in my x.ds.xml datasource.
On a boolean field I'm trying to only return fields that are false, and am using :
This almost works, however it is replacing my operator with the contains operator, ie :
How do I write the XML to get the desired operator to be used?
On a boolean field I'm trying to only return fields that are false, and am using :
Code:
<operationBinding operationType="fetch"> <criteria fieldName="deleted" value="false" operator="EQUALS" /> </operationBinding>
Code:
criteria=[{value=false, fieldName=deleted, operator=contains}]
Comment