Skip to content

Instantly share code, notes, and snippets.

@anjmao
Created November 23, 2017 10:52
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/a292459094189139e0e318ab7e92e2eb to your computer and use it in GitHub Desktop.
Save anjmao/a292459094189139e0e318ab7e92e2eb to your computer and use it in GitHub Desktop.
<pre>
<code class="html">
&lt;ng-select [items]="items"
notFoundText="No results found"
typeToSearchText="Search for github account"
bindLabel="login"
[placeholder]="placeholder"
[multiple]="multiple"
[typeahead]="typeahead"
[(ngModel)]="githubAccount"&gt;
&lt;ng-template ng-option-tmp let-item="item"&gt;
&lt;img [src]="item.avatar_url" width="20px" height="20px"&gt; {{item.login}}
&lt;/ng-template&gt;
&lt;/ng-select&gt;
</code>
</pre>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment