0

问题: 我有一个表,每个表都有一个链接。我希望每行的第一个单元格都有一个严格用于切换的复选框。我可以显示复选框,但我不能让它让我检查它。

<table class="table table-hover">
  <thead>
    <th></th>
    <th>Things</th>
    <th>Stuff</th>
<th></th>
   </thead>
  <tbody>
  {{#each myArr as |item|}}
          {{#link-to 'application' tagName='tr' }}
      <td><input type="checkbox"></td>

      <td>{{item}}</td>
      <td> Something</td>

          {{/link-to}}
  {{/each}}
  </tbody>
</table>
  • 我不想走路线
  • 复选框需要切换
  • 复选框不需要保存值(可以在页面刷新时销毁)
  • 使用{{input}}助手没有区别

我有一个旋转https://ember-twiddle.com/bc53d499687ad8bdc902be5cd7d77f48

4

1 回答 1

1

您需要作为组件分开。

请看这个转

于 2016-07-13T00:22:08.473 回答