bpj
1
I'm having this issue with a google places input. Results seem to be coming back from Google but not producing the dropdown
<input id="text4" name="text4" type="text" class="form-control" is="dmx-google-autocomplete" types="address" country="GB">

Nothing produced:

Did anyone get it working?
Yes, I have this working. Maybe duplicate element id values are confusing things? Dev console errors?
bpj
3
Thanks Ken. I completely randomised the ID to rule out a clash and it still doesn’t work - no errors in Console either 
I had the same issue. However, my form was in a modal, so I needed to change the z-index of the pac-container and it worked.
.pac-container {
z-index: 2000 !important;
}