oferh / ng2-completer

Angular 2 autocomplete component
http://oferh.github.io/ng2-completer/
MIT License
347 stars 172 forks source link

Missing "keyboard autocomplete dictionary" on Android device in Ionic #339

Open Ryxmedia opened 7 years ago

Ryxmedia commented 7 years ago

I was able to successfully implement ng2-completer in my Ionic app, but the only thing I'm missing is the "keyboard autocomplete dictionary" when typing in a word in the input field. Like for example here: https://i.imgur.com/qSyqzS2.png

For all input fields in Ionic you have to add 'autocomplete="true"' and then it works, but not if I use ng2-completer as a field declared with ng2-completer doesn't have that attribute.

Is this not possible in general with ng2-completer? I couldn't find anything usefull in the documentation or by googling for it.

oferh commented 7 years ago

autocomplete="false" is hardcoded in ng2-completer since that's the purpose of the element. if there is another way to let Android know that it should display suggestions it can be added, if not we can make it a parameter.

Ryxmedia commented 7 years ago

Would be great to have this as a parameter. I couldn't find any way to get it working.