Paging

Adding Paging Table in your project

There following steps to add Paging 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 { PagingTableComponent}  from './tables/table-paging/table-paging.component';
  • Now open app-routing.module.ts file and import this file.

    import { PagingTableComponent }  from './tables/table-paging/table-paging.component';

    After this,add following in routes

    { path: 'tables/paging', component: PagingTableComponent }

Last updated