2012-06-20 68 views
0

我有一個HashMap<Date, List<Service>>和我在index.scala.html如何處理combobox「onchange」事件?

<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
<select name="Dates" > 
    @for((k,v) <- dates) { 
     <option value="@k">@k</option> 
    } 
</select> 
+0

謝謝,但如何處理我的組合框中的「onchange」事件? – user1469253

相關問題