我有HashMap<Date, List<Service>>
,我在 index.scala.html
<select name="Dates" >
@for((k,v) <- dates) {
<option >@k</option>
}
</select>
要显示List<Service>
我在 index.scala.html
@getServices(date: String) = {
<table class="computers zebra-striped">
<thead>
<tr>
<th>Service name</th>
<th>Price</th>
<th colspan="2">Counter</th>
<th>Note</th>
</tr>
<tr>
<th></th>
<th></th>
<th>start</th>
<th>end</th>
</tr>
</thead>
<tbody>
@for(s <- dates.get(utility.MonthYear.getUkrDate(date))) {
<tr>
<td>@s.getName</td>
<td>@s.getPriceString</td>
<td>@s.getFromCounterString</td>
<td>@s.getToCounterString</td>
<td>@s.getNote</td>
</tr>
}
</tbody>
</table>
}
我需要知道服务器端,从组合框中选择了什么项目。
所以,问题,如何根据我在组合框中的"onchange"
事件上的日期显示列表?
答案 0 :(得分:0)
<select name="Dates" >
@for((k,v) <- dates) {
<option value="@k">@k</option>
}
</select>