Last active
August 5, 2018 14:29
-
-
Save venkateshwarv/b2706d671d5ef3641e009a52b15b3bd7 to your computer and use it in GitHub Desktop.
Step1 - Multiselect with WebWorker
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
<mat-form-field color="primary" class="search-box" [floatLabel]="floatPlaceholder"> | |
<mat-icon class="input-icon" matPrefix fontSet="fa" fontIcon="fa-search"></mat-icon> | |
<input matInput [formControl]="input" [disabled]="disabled" autocomplete="off" (focus)="showPopUp()" [placeholder]="placeholder" | |
/> | |
</mat-form-field> | |
<ng-template #multiSelectFor> | |
<!-- Place where your options will go --> | |
</ng-template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment