Skip to content

Instantly share code, notes, and snippets.

@anjmao
Last active November 23, 2017 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anjmao/7c44644fcd68a9adfa8a437a8b7000da to your computer and use it in GitHub Desktop.
Save anjmao/7c44644fcd68a9adfa8a437a8b7000da to your computer and use it in GitHub Desktop.
---html,true
<ng-select [items]="items"
notFoundText="No results found"
typeToSearchText="Search for github account"
bindLabel="login"
[placeholder]="placeholder"
[multiple]="multiple"
[typeahead]="typeahead"
[(ngModel)]="githubAccount">
<ng-template ng-option-tmp let-item="item">
<img [src]="item.avatar_url" width="20px" height="20px"> {{item.login}}
</ng-template>
</ng-select>
---
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment