public class Sample extends WebPage{
public Sample() {
Formform = 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 件のコメント:
コメントを投稿