angular-google-places-autocomplete
angular-google-places-autocomplete copied to clipboard
Force Select only works when dropdown is visible
If I create a g-places-autocomplete
with options
for type and country restrictions as follows,
$scope.options = {
types: ['(cities)'],
componentRestrictions: {
country: 'us'
}
};
And try to enter a city name which is not available, that makes autocomplete dropdown blank (no dropdown), and force-selection
does not work, It just accept the raw text entered by user.
Hello, In my case the dropdown doesn't show anything, so I put .pac-container { z-index: 10000 !important; } in my css file and works.