I have a problem using the selectCheckboxMenu filter, since it does not filter the accents, for example I have this list.
But when filtering for example the letter "a", only that character filters me and not the accented one.
Someone knows how to do so that both characters appear to me when putting with accent or without it.
<p:selectCheckboxMenu id="menu" value="#{ClassBean.selectedItems}" label="Items" filter="true" filterMatchMode="contains">
<f:selectItems value="#{ClassBean.items}"/>
</p:selectCheckboxMenu>
I think I did not understand, what happens is that when filter does not filter words with accents, for example I have the words:
Circle Circle Circulated
When I add the filter "cir", I discriminate the first word that starts with an accent.
I want to see if there is a way for me to take accents into account.