Contributing to npm
A simple yet elegant way to apply filtering functionality on your HTML tables in Angular using pipes.
Install using npm
npm install --save ng4-pipes
// and add in your module’s declarations array
declarations: [
SearchFilter
]
2. Import the required filter in your.component.ts
```typescript
import { SearchFilter } from "ng4-pipes/src/app/pipes/searchFilter";
Define the textbox to be used to search in the table
<input type="text" [(ngModel)]="search"/>
Use the pipe on the target table
<tr *ngFor="let student of students | SearchFilter:search">
Please follow this guidelines when reporting bugs and feature requests:
Thanks for understanding!
The MIT License (see the LICENSE file for the full text)