List からテーブル行を作成する Lift コードがあります。
".row *" #> myList.map(x => {
val rowId = x.id
".cell1" #> x.data &
".cell2" #> x.moreData
})
次のようなテンプレートに基づいています。
<table>
<tr class="row">
<td class="cell1"></td>
<td class="cell2"></td>
<tr>
<table>
次のような出力が必要です。
<table>
<tr class="row" id="123">
<td class="cell1">stuff</td>
<td class="cell2">junk</td>
<tr>
<tr class="row" id="456">
<td class="cell1">more stuff</td>
<td class="cell2">more junk</td>
<tr>
<table>
List 要素に基づいて、そのid
属性をrowId
for eachに設定するにはどうすればよいですか?tr