Created
July 12, 2017 18:03
-
-
Save molcik/47a6384e44e597d5f9f217737fdf7d6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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