Angular Table Editor
npm install angular-table-editor**
This project has been ported to Angular 2+ and is not being maintained (nor was it even ever finished). Check out @ngx-table-editor.
---
#### AngularJS library that transforms dull HTML tables into dynamic editable components
---
See the project page for examples and documentation
---
1. download the package and include the supplied JS file in your HTML. Currently its not hosted via CDN (yet).
``html`
Or if you're using a precompiler, download via npm
``
$ npm install angular-table-editor --save-dev
and import the library in your javascript
`js`
import ngTableEditor from 'angular-table-editor'
2. include ngTableEditor in your project as a dependency
`js`
angular.module('myApp', ['ngTableEditor'])
And you should be good to go :>
1. Clone the project, cd into the folder, run npm install --dev npm run dev
2. At this point, there's a bunch of npm commands available.
* gets a webpack watcher up and running on contents of src, which contains the source code of the library.npm run build-demo
* will install everything needed to get the demo page up and running locally, which you can use for development.npm run dev-withdemo
* will get webpack up and running for both the demo and the library source code, and will launch the demo on (by default) localhost:8000. You may use this as a starting point for development instead of creating your own environment from scratch, if you wish. Don't forget to run npm run build-demo` first!
3. Do some awesome fixes, and make a pullrequest :>