我使用wicket并创建了一个像这样的List Choice并覆盖onSelectionChanged:
ListChoice<String> hotelList = new ListChoice<String>("hotel",
new PropertyModel<String>(this, "selectedHotel"), hotelLabels) {
@Override
protected void onSelectionChanged(String newSelection)
{
super.onSelectionChanged(newSelection);
System.out.print("Tesy");
}
};
但它不起作用 - 程序永远不会触发此方法。我不想使用onSubmit来处理这个问题。当有人在列表上点击时,我需要采取行动。
如何在wicket中执行此操作?
答案 0 :(得分:1)
final ListChoice<String> hotelList = new ListChoice<String>("hotel", new PropertyModel<String>(this, "selectedHotel"), hotelLabels);
hotelList.add(new AjaxFormComponentUpdatingBehavior("onchange") {
protected void onUpdate(AjaxRequestTarget target) {
System.out.print(hotelList.getModel().getObject());
}
});
hotelList.setOutputMarkupId(true);