I use the filter for datatables, but when I do the filter like this:
filter ="" + fd.field('Title').value + ""
filterArray.push(filter);
………….
dt.filter = filterArray[0]
dt.refresh();
If title is Martín (with accent) it only searched for the accented word, my goal is that rows with title Martin (without accent) are returned.
This is how it works the search in a list or if you use a database, it is insensitive to accents.
Internally as you know the query is done with RenderListDataAsStream and a where clause.