Hi,
I have a grid with some list data. One of the field is status (active, inactive, test).
<field name="status" type="enum" title="Status" required="true"
length="2">
<valueMap>
<value ID="A">Active</value>
<value ID="I">Inactive</value>
<value ID="T">Test</value>
<value ID="T,I">Test - Inactive </value>
</valueMap>
</field>
I added the last value as so I can do an "in" for the criteria.
Is this doable? If I set the filter operator as below?
statusField.setFilterOperator(OperatorId.IN_SET);
I have a grid with some list data. One of the field is status (active, inactive, test).
<field name="status" type="enum" title="Status" required="true"
length="2">
<valueMap>
<value ID="A">Active</value>
<value ID="I">Inactive</value>
<value ID="T">Test</value>
<value ID="T,I">Test - Inactive </value>
</valueMap>
</field>
I added the last value as so I can do an "in" for the criteria.
Is this doable? If I set the filter operator as below?
statusField.setFilterOperator(OperatorId.IN_SET);
Comment