You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 6, 2024. It is now read-only.
I am implementing autocomplete for input text box.
my html is--->
Here if i bind pincode statically then auto complete works.
but if i try to fill pin code dynamically using web service then it dont work even if static and dynamic pincode collection are same .
My controller is -- >
ngOnInit() {
this.pincodeDataService.getPincodeList(pincodeInitials)
.subscribe((data) => {
this.pincodes1 = data;
this.pincodes1.forEach(s => {
if (this.pincodes["data"] == undefined)
this.pincodes["data"] = {};
this.pincodes["data"][s.pin_code] = s.pin_code_id;
})
}
is there any demo or way which will show dynamic autocomplete.
The text was updated successfully, but these errors were encountered: