Filter

Adding Filter Table in your project

There following steps to add Filter Table

  • First of all, you have to edit in app.modulefile ,which is located in your-project-name\src\app folder.

  • Import following files in app.module file

    import { FilterTableComponent}  from './tables/table-filter/table-filter.component';
  • Now open app-routing.module.ts file and import this file.

    import { FilterTableComponent }  from './tables/table-filter/table-filter.component';

    After this,add following in routes

     { path: 'tables/filter', component: FilterTableComponent }

Last updated