API Docs for: v2.7.0
Show:

Components.ModelsTableRowSortingCell Class

Extends Ember.Component

Sort-row cell used within models-table/row-sorting.

{{#models-table data=data columns=columns as |mt|}}
  {{#mt.table as |table|}}
    {{#table.header as |header|}}
      {{#header.row-sorting as |rs|}}
        {{#each rs.visibleProcessedColumns as |column|}}
          {{rs.row-sorting-cell column=column}}
        {{/each}}
      {{/header.row-sorting}}
      {{! ... }}
    {{/table.header}}
    {{! ... }}
  {{/mt.table}}
  {{! .... }}
{{/models-table}}