問題: 我有一個鏈接到每個表中的表。我希望每行的第一個單元格都有一個用於切換的複選框。我可以顯示覆選框,但我無法讓它檢查它。如何將複選框添加到#{{鏈接到}}幫助程序中
<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
爲什麼你把它們放在'{{link-to}}'? –
:))你的老闆是錯的。{{link-to}}'用於創建鏈接。如果你想要其他東西,也許你應該使用另一件事 –
你想對點擊行採取行動? –