-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
autocomplete not working on chrome, probably to browser autocomplition functionality #378
Comments
Fixed by wrapping |
I tried with a |
|
Oh lol, vss is vue-simple-suggest :) |
Did it work for you too? Can close this issue if so |
Sorry, I did not try it yet, let u know a bit later |
no, it's not working for me, I tried to wrap all fields with a |
Do you need this nested |
k, I'll try it tomorrow, it's late for me, thanks! And the reason I have that nested element is b-z I need to set a custom class and placeholders, can I do It without nesting that input??? |
Try a simple version first, then add another layer of complexity and see where it breaks |
well, now I'm not sure if it's related to autocomplete, when I remove nested input that cross sign gone, but still the dropdown not appearing. I make small videos to show how it works on Chrome and on Firefox (same on safari) , as u can see it working on Firefox.. not sure if it can be helpful. Not code looks like this:
|
Hello @bogdan-dubyk Can you provide us a link to reproduction repo/jsfiddle/jsbin stand? Would be much easier to do some debugging. We are using VSS in our production projects and got no such issue. |
Sure @kaskar2008 , I'll prepare some sample code |
Here is the code sandbox example I made, where I can reproduce the bug https://codesandbox.io/s/stupefied-flower-q3xz4?file=/src/App.vue (HTML is broken as I remove most of the logic) |
Is someone able to reproduce the issue and have any thought on how to fix it??? |
Can you simplify the code example? No need for it to be 650 lines |
sure, here it is https://codesandbox.io/s/vigorous-cartwright-fiyb3 |
any updates? :) |
I'm submitting a ...
What is the current behavior?
When I click on input in chrome and type something, chrome showing me blue
x
and because of that, it's not showing a dropdown with possible values after response returned from the backend. On other browsers where I test it (firefox, safari) all works as expectedWhat is the expected behavior?
When I type something to the input, the app sending a request to the server and after getting a response should show me a dropdown with possible suggestions
How are you importing Vue-simple-suggest?
import VueSimpleSuggest from 'vue-simple-suggest/lib'
)import VueSimpleSuggest from 'vue-simple-suggest'
)import VueSimpleSuggest from 'vue-simple-suggest/dist/es7'
)import VueSimpleSuggest from 'vue-simple-suggest'
)const VueSimpleSuggest = require('vue-simple-suggest')
)<script type="text/javascript" src="https://unpkg.com/vue-simple-suggest"></script>
)Please tell us about your environment:
** Sample code **
Here also an image of how the input looks like on Chrome with that blue
x
sign https://gyazo.com/9d011021aab8d55e8ac33dbbbb478543The text was updated successfully, but these errors were encountered: