How to use the ember-table/views/header-cell.extend function in ember-table

To help you get started, we’ve selected a few ember-table examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Addepar / ember-table / tests / dummy / app / views / financial-table-header-cell.js View on Github external
// BEGIN-SNIPPET financial-table-header-cell
import HeaderCell from 'ember-table/views/header-cell';

export default HeaderCell.extend({
  templateName: 'financial-table/financial-table-header-cell'
});
// END-SNIPPET
github Addepar / ember-table / tests / dummy / app / views / financial-table-header-tree-cell.js View on Github external
// BEGIN-SNIPPET financial-table-header-tree-cell
import HeaderCell from 'ember-table/views/header-cell';

export default HeaderCell.extend({
  templateName: 'financial-table/financial-table-header-tree-cell',
  classNames:   'ember-table-table-header-tree-cell'
});
// END-SNIPPET