Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Sorting Latin (accent) characters. (Vaadin 8)
Hello,
When I try to sort a grid by clicking on the column title the accented characters are not properly sorted, it's the same with the method grid.setSortOrder.
Is there something to configure for that ?
Are you using a dataprovider srting or in-memory sorting? If in-memory, the its getColumn().setComparator and follow advice from http://stackoverflow.com/questions/26420678/ordering-an-array-with-special-characters-like-accents
I'm actually using a dataProvider and found the solution thanks to you !!
I had to implement SerializableComparator<T> to my Comparator class and setComparator to the addColumn line.
Thanks