Hi Isomorphic,
please see the last dropdown in these specialValues-samples: v12.1p_2020-04-10, v12.0p_2020-04-11.
For 12.1p, the sample shows no values, while it does for 12.0p.
This is due to the criteria in the DSRequest in the RPC Tab of the Developer Console I think:
12.0p:
12.1p:
I assume 12.0p is correct here with it's simple criteria format, even though I don't understand why there is no data with 12.1p.
If you add pickListProperties: { dataFetchMode: "local"} as well as a field {name:"units"} to pickListFields in 12.1p, you'll see that client side filtering is working.
But if you change the criteria to
it shows no data in both 12.0p and 12.1p. So perhaps an server problem in both?
Best regards
Blama
please see the last dropdown in these specialValues-samples: v12.1p_2020-04-10, v12.0p_2020-04-11.
For 12.1p, the sample shows no values, while it does for 12.0p.
This is due to the criteria in the DSRequest in the RPC Tab of the Developer Console I think:
12.0p:
Code:
data:{ units:"Ream" },
Code:
data:{ operator:"and", criteria:[ { fieldName:"units", operator:"iEquals", value:"Ream" } ] },
If you add pickListProperties: { dataFetchMode: "local"} as well as a field {name:"units"} to pickListFields in 12.1p, you'll see that client side filtering is working.
But if you change the criteria to
Code:
optionCriteria: { _constructor: "AdvancedCriteria", operator: "and", criteria: [ { fieldName: "units", operator: "iEquals", value: "Ream" } ] },
Best regards
Blama
Comment