如何将自定义单元格模板添加到Ember-Table表



在过去,我使用一个普通的车把模板来创建一个表,其中包含指向其他模板的链接,如下所示。

<tbody>
        {{#each}}
            <tr>
                <th>
                    {{#link-to 'entities.entity' actorId}}{{/link-to}}
                </th>
                {{#each alsoKnownAs}}
                <td>
                    {{this}}
                </td>
                {{/each}}
            </tr>
        {{/each}}
        </tbody>

使用Ember-Table框架,我将模板重构为

<div style="height: 800px;width: 100%;">
{{table-component
  hasFooter=false
  enableContentSelection=true
  columns=columns
  content=controller}}
</div>

我的控制器现在看起来像

entitiesController = Ember.ArrayController.extend
  sortAscending: true
  sortProperties: ['displayName']
  profile_link: 'entities/profile_link'
  columns: Ember.computed ->
    AKA = Ember.Table.ColumnDefinition.create
      columnWidth: 750
      headerCellName: 'Also Known As'
      textAlign: 'text-align-left'
      getCellContent: (row) -> row['alsoKnownAs'].join(', ')
    displayName = Ember.Table.ColumnDefinition.create
      columnWidth: 200
      headerCellName: 'Entity Name'
      textAlign: 'text-align-left'
      TableCellViewClass: 'profile_link'
      getCellContent: (row) -> row['displayName']
    [displayName, AKA]

和我的自定义模板entities/profile_link

<th>{{#link-to 'entities.entity' actorId}}{{/link-to}}</th>

我如何设置我的控制器,以便当我点击一个单元格在"实体名称"列它链接到我的自定义模板?

代替TableCellViewClass: 'profile_link'

你可以定义模板inline:

tableCellViewClass: Ember.Table.TableCell.extend
        template: Em.Handlebars.compile """
          {{#link-to 'entities.entity' view.cellContent}}
            {{view.cellContent}}
          {{/link-to}}
"""

相关内容

  • 没有找到相关文章

最新更新