我有一个HashMap<Date, List<Service>>
并且我在我的index.scala.html的组合框中显示日期
<select name="Dates" >
@for((k,v) <- dates) {
<option >@k</option>
}
</select>
显示我在index.scala.htmlList<Service>
中有这段代码
@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"
在我的组合框中根据我的事件日期显示列表?