Last active
October 15, 2021 15:46
-
-
Save thuliumsystems/6e52c3ff51454a088925b7659ebfcf92 to your computer and use it in GitHub Desktop.
ion searchbar
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
<ion-searchbar placeholder="Pesquisar..." showCancelButton="focus" [(ngModel)]="filterHouse"></ion-searchbar> | |
<ion-item *ngFor="let h of houses | filter:filterHouse"> |
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
import { Ng2SearchPipeModule } from 'ng2-search-filter'; | |
@NgModule({ | |
imports: [ | |
... | |
Ng2SearchPipeModule | |
], | |
}) |
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
filterHouse: string; | |
houses: any = [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment