我试图在wicket框架中获取dropdownchoice的选定值,但我无法获得它。
如何在dropdownchoice的change事件上获取DropDownChoice的选定值?
谢谢。
一世
最佳答案
这很容易,您所要做的就是使用AjaxFormComponentUpdatingBehavior
:
DropDownChoice<String> ddc = new DropDownChoice<String>("ddc", model, Arrays.asList("a", "b", "c"));
ddc.add(new AjaxFormComponentUpdatingBehavior("onchange") {
@Override
protected void onUpdate(AjaxRequestTarget target) {
System.out.println("selected: " + model.getObject());
}
});