Hi,
From the below screenshot in the Dropdown filter i am selecting "TEST" where every letter is capital so in the below grid the data has to display only the data which is exactly match the "TEST" filter but it is also displaying irrespective of case insensitive which means data like "test" also getting filtered & displaying the data in the grid. But we want exact match we are selecting in the dropdown filter that data only needs to display in the grid. Kindly Suggest on this
Grid Filter Code:
Grid Row Value:
Discussion posts and replies are publicly visible
For case sensitive filters you have to use "=" or "<>" operators.
Hi Stefan Helzle & Vyshnavi Naripeddi ,
Thanks for the Response.
I need to have multiple case id to be filter in such situation the operator "=" will not work right. So i want to check the case sensitive for array of values
ashwinir5622 said:I need to have multiple case id to be filter
Then you can use a Logical Expression with the "OR" operator and a list of Query Filters (all using "=") that loops over your input list of dropdown items.
Did you consider to fix the problem in the database? Do you have control on the values entered in this field?