Skip to content

fpauser/ember-tabulator

Repository files navigation

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