如何处理组合框“onchange”事件?

时间:2012-06-20 12:46:02

标签: playframework-2.0

我有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"事件上的日期显示列表?

1 个答案:

答案 0 :(得分:0)

<select name="Dates" >
    @for((k,v) <- dates) {
        <option value="@k">@k</option>
    }
 </select>