This repository is not maintained. It is also not completely finished, but the features that made it in should be relatively stable. I do still believe the idea behind this package is valuable, so be sure to check out some examples in the doc. If you have interest in library, contact me.
A library that transform dorky static HTML tables into cool dynamic editable components. Tested with Angular 6.1.
Using npm:
npm install --save-dev @ngx-table-editor/core
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { TableEditorModule } from '@ngx-table-editor/core';
@NgModule({
declarations: [ ... ],
imports: [ ... ,
TableEditorModule,
FormsModule, /* if you want to use it with NgModel */
ReactiveFormsModule, /* if you want to use it with FormGroup and FormControl */
... ],
providers: [ ...],
bootstrap: [ ... ]
})
export class SomeModule {}
See the examples or the API docs.
By hitting:
npm install --save-dev @ngx-table-editor/extras
And import from it whatever you want to use.
@NgModule({
declarations: [ ... ],
imports: [ ... , TypeaheadModule.forRoot(), ... ],
providers: [ ...],
bootstrap: [ ... ]
})
export class SomeModule {}
MIT