Editing

Adding Editing Table in your project

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

    import { EditingTableComponent }  from './tables/table-editing/table-editing.component';

    After this,add following in routes

    { path: 'tables/editing', component: EditingTableComponent }

Last updated