Guest User

Untitled

a guest
Nov 24th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <h3>Multiselect example with custom template and typeahead</h3>
  2.  
  3. <pre>
  4. <code class="html">
  5. <ng-select [items]="items"
  6. notFoundText="No results found"
  7. typeToSearchText="Search for github account"
  8. bindLabel="login"
  9. [placeholder]="placeholder"
  10. [multiple]="multiple"
  11. [typeahead]="typeahead"
  12. [(ngModel)]="githubAccount">
  13. <ng-template ng-option-tmp let-item="item">
  14. <img [src]="item.avatar_url" width="20px" height="20px"> {{item.login}}
  15. </ng-template>
  16. </ng-select>
  17. </code>
  18. </pre>
  19.  
  20. <ng-select [items]="items"
  21. notFoundText="No results found"
  22. typeToSearchText="Search for github account"
  23. bindLabel="login"
  24. [placeholder]="placeholder"
  25. [multiple]="multiple"
  26. [typeahead]="typeahead"
  27. [(ngModel)]="githubAccount">
  28. <ng-template ng-option-tmp let-item="item">
  29. <img [src]="item.avatar_url" width="20px" height="20px"> {{item.login}}
  30. </ng-template>
  31. </ng-select>
Add Comment
Please, Sign In to add comment