DynamicDataTable
A DataTable for Angular 6, with dynamic columns and dynamic forms for CRUD operations. It uses Material Design components.
Prerequisites
This library uses Angular Material. You can follow this guide to install it:
https://material.angular.io/guide/getting-started
Installation and usage
You can install the package with the following command:
npm i -s @gmoreyra/dynamic-data-table
Import DynamicDataTableModule in your AppModule
import { DynamicDataTableModule } from '@gmoreyra/dynamic-data-table';
@NgModule({
imports: [
DynamicDataTableModule
]
})
Use the following directive:
<gm-data-table [data]="myData"></gm-data-table>
Documentation
Work in progress...
License
This project is licensed under the MIT License - see the LICENSE.md file for details