I'm currently using Dojo's ComboBox for autocompletion in my project. The data for the ComboBox is provided via Solr, so it only contains what solr believes to the 10 closest matches. The ComboBox is getting incredibly confused when it comes to Middle Initials, so for example:
"Hill" will match "Adam Hill" "Adam" will match "Adam Hill", "Adam E Gray", etc.
But if I type "Adam E" or "Adam Gray", I get no matches back. My current queryExpr is:
*{0}*
and I can't figure out how to do partial matches around, any suggestions?