ember-table-ag-grid

0.0.5 • Public • Published

ember-table-ag-grid

This is a simple AG-Grid wrapper component.

Compatibility

  • Ember.js v3.12 or above
  • Ember CLI v2.13 or above
  • Node.js v10 or above

Installation

ember install ember-table-ag-grid

Usage

Controller or Component

columnDefs = [
  {headerName: 'Make', field: 'make'},
  {headerName: 'Model', field: 'model'},
  {headerName: 'Price', field: 'price'}
]

rowData = [
  {make: 'Toyota', model: 'Celica', price: 35000},
  {make: 'Ford', model: 'Mondeo', price: 32000},
  {make: 'Porsche', model: 'Boxter', price: 72000}
];
<AgGrid
  class="ag-theme-balham"
  @columnDefs={{this.columnDefs}}
  @rowData={{this.rowData}} />

TODO

  • [ ] SCSS based imports
  • [ ] CSS dynamic imports
  • [ ] Test cases

Contributing

See the Contributing guide for details.

License

This project is licensed under the MIT License.

Readme

Keywords

Package Sidebar

Install

npm i ember-table-ag-grid

Weekly Downloads

4

Version

0.0.5

License

MIT

Unpacked Size

6.07 kB

Total Files

8

Last publish

Collaborators

  • abhilashlr