0.0.4 • Published 3 years ago

ember-tabulator v0.0.4

Weekly downloads
4
License
MIT
Repository
-
Last release
3 years ago

ember-tabulator

A table renderer component that wraps Tabulator.

Compatibility

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

Installation

ember install ember-tabulator

Usage

<EmberTabulator
  @data={{this.data}}
  @columns={{this.columns}}
/>

All supported options of Tabulator can be given as component arguments, e.g.:

<EmberTabulator
  @height="400px"
  @headerSort={{false}}
  @resizableColumns={{true}}
  @data={{this.data}}
  @columns={{this.columns}}
/>