Skip to content

Instantly share code, notes, and snippets.

@molcik
Created July 12, 2017 18:03
Show Gist options
  • Save molcik/47a6384e44e597d5f9f217737fdf7d6f to your computer and use it in GitHub Desktop.
Save molcik/47a6384e44e597d5f9f217737fdf7d6f to your computer and use it in GitHub Desktop.
<md-input-container>
<input mdInput placeholder="State" [mdAutocomplete]="auto" [formControl]="stateCtrl">
</md-input-container>
<md-autocomplete #auto="mdAutocomplete" [displayWith]="parseHash.bind(this)">
<md-option *ngFor="let state of filteredStates | async" [value]="state">
{{ state }}
</md-option>
</md-autocomplete>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment