Is it possible to have an string contains filter which is not case sensitive?
Currently I use this filter:
‘[{“value”:“Res”,“conditionType”:“Contains”,“columnPosition”:1}]’
Which filters for Res in the rows of table column idx 1.
I have ideas for a Workarround but I ask if there is a native way available.
At the moment the conditionType “Contains” is not case sensitive since it was expected that this is what most user would want. Otherwise for short strings, to many false positives would be found.
You can implement an OR condition with the lowercase filter string to implement what you need or request a new case insensitive Contains conditionType over your sales.
However short term I suggest to implement the or condition.