Skip to content

A library for Angular that transforms HTML tables into dynamic editable components.

Notifications You must be signed in to change notification settings

maurei/ngx-table-editor

Repository files navigation

DISCLAIMER:

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.

ngx-table-editor

A library that transform dorky static HTML tables into cool dynamic editable components. Tested with Angular 6.1.

Getting Started

Install the library

Using npm:

npm install --save-dev @ngx-table-editor/core

Import the library in your module

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 {}

Transform some dull HTML tables.

See the examples or the API docs.

Optional: Consider to install the extras

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 {}

License

MIT

About

A library for Angular that transforms HTML tables into dynamic editable components.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published