Play Framework 2.0 でアプリケーションを開発しています。
テーブルにいくつかの結果を返すフィルター セクションがあり、各行には次のような [詳細] ボタンがあります。
@(logList: List[Log])
@import helper._
@import helper.twitterBootstrap._
@title = {
Results...
}
@main(title, nav = "filter") {
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Date</th>
<th>Hour</th>
<th>Event</th>
</tr>
</thead>
<tbody>
@helper.form(action = routes.LogDetail.submit) {
@logList.map { log =>
<tr>
<td>@log.id</td>
<td>@log.date</td>
<td>@log.time</td>
<td>@log.event</td>
<td>
<input type="submit" class="btn primary" value="Details">
</td>
</tr>
}
}
</tbody>
</table>
}
行の詳細ボタンが押されたときに行の ID を渡すには、どのような変更が必要ですか?
ありがとう