Search diacritical marks insensitive( e.g: é,è,ë)

1
Hello, is there a possibility to create a search field in a datagrid that searches diacritical marks insensitive? So that for example the search on the name "Frédéric" also returns names like "Frederic" or "Frêdèric". Thanks in advance for your response
asked
1 answers
1

I would recommend storing an extra attribute with the "stripped" version of the field you're looking to search. It looks like that process would just require a very simple java action with about 2-3 lines of code, based on this question on StackOverflow.

So, in a commit event, pass a string as a parameter, use your java action to get a stripped down string, and store that in your new attribute.

answered