2009/11/04

Wicket勉強中(DropDownChoice)

Apache Wicketを再勉強中。DropDownChoiceを使う最もシンプルなコードを作ってみた。

public class Sample extends WebPage{
public Sample() {
Form form = new Form("form");
form.add(new DropDownChoice("result"
, new PropertyModel(this, "resultChoiceSelection")
, Arrays.asList("エラー", "安打", "二塁打", "三塁打", "ホームラン")
));
form.add(new Button("submit"));
add(form);
}
private String resultChoiceSelection;
}

PropertyModelの行削ったり、変わりにListModelだったりすると、submit時に例外が起こる。これってバグと言っていいと思うけどなぁ。

0 件のコメント: