kadoshms / ionic2-autocomplete

Ionic 2 autocomplete component
MIT License
149 stars 108 forks source link

Display other attributes. #146

Closed craidencool13 closed 6 years ago

craidencool13 commented 6 years ago

Can I display another attribute to the dropdown list?

Sample: <ng-template #withFlags let-attrs="attrs" class="search-preview"> <span [innerHTML]="attrs.name| boldprefix:attrs.keyword"></span> <span [innerHTML]="attrs.address | boldprefix:attrs.keyword"></span> </ng-template>

Thanks!

kadoshms commented 6 years ago

@craidencool13 sure, you can access the attrs.data within the template, and it has access to all the data attributes associated with your items.