Hi, I'm new to AngularJs, and stacking with the problem of diacritics while do filtering through
filter:search. Here is an example what I'm talking about:
http://jsfiddle.net/gFGFN/8/ to filter here I should write the full word as it is:
Jamón and not
Jamon. How could I avoid it? And ignore these special characters and all the diacritics?
And I can see that nobody cares about such things, all the projects I can see on GitHub have the same issue. On
http://builtwith.angularjs.org there is only one website, which is really complicated and hard to understand, uses the complicated technics to avoid it:
http://illicoweb.videotron.com, it has a simple JavaScript code and function in it which do
str.replace using RegExp. And they implemented it in their controller. As for me it doesn't work at all.
So the question is how to make the simplest solution to ignore symbols like
á, é, ü or
ö, it doesn't matter at all which symbols. And how to make the latest filter here
http://jsfiddle.net/gFGFN/7/ to do filtering?
What would you recommend to read? Any tips or tutorials on these complex things?
Thanks! I hope it is clear