Wicket - 选择对象的DropDownChoice

时间:2012-04-27 14:01:51

标签: wicket dropdownchoice

我遇到DropDownChoice问题。我必须预先选择一个项目,但我找到的每个教程和示例,只考虑一个基本类型列表。

我有一个Object列表。

class myObject {
   private String name;
   private String surname;
   [setter and getter]
} 

在其他班级

List<MyObject> myList = some_data_retrieve();
MyObject defaultValue = some_simple_data_retrieve();

使用以下构造函数构建DropDownChoice:

final DropDownChoice<T> ddc = new DropDownChoice<T>(id, data, new ChoiceRenderer<T>(choiceRendererExpression, choiceRendererIdExpression));

这样:

final DropDownChoice<myObject> ddc = new DropDownChoice<myObject>("wicket_id", myList, new ChoiceRenderer<myObject>("name", "surname"));

现在。在每个教程/示例中,他们使用另一个带有Model的构造函数。例如:

private static final List<String> SEARCH_ENGINES = Arrays.asList(new String[] {
        "Google", "Bing", "Baidu" });
private String selected = "Google";
DropDownChoice<String> listSites = new DropDownChoice<String>(
        "sites", new PropertyModel<String>(this, "selected"), SEARCH_ENGINES);

我尝试过这样的事情来模仿这种呼叫:

final DropDownChoice<myObject> ddc = new DropDownChoice<myObject>("wicket_id", new PropertyModel<myObject>(this,"defaultValue"),myList, new ChoiceRenderer<myObject>("name", "surname"));

但我得到的是一个错误:

No get method defined for class: package$WicketPage expression: defaultValue

拜托,请帮助我。

由于

2 个答案:

答案 0 :(得分:8)

这意味着你需要添加&#34; defaultValue&#34;的getter和setter。在您要添加DropDownChoice的页面或组件中。

public class MyPage extends WebPage {

    private MyObject defaultValue;

    public MyPage(PageParameters pageParameters) {
        super(pageParameters);

        defaultValue = some_simple_data_retrieve();
        List<MyObject> myList = some_data_retrieve();

        add(new DropDownChoice<myObject>(
                       "wicket_id",
                       new PropertyModel<MyObject>(this,"defaultValue"),
                       myList, 
                       new ChoiceRenderer<MyObject>("name", "surname")
        );           
    }

    public MyObject getDefaultValue() {
        return defaultValue;
    }

    public void setDefaultValue(MyObject defaultValue) {
        this.defaultValue = defaultValue;
    }
}

答案 1 :(得分:0)

PropertyModel是解决此类问题的不错选择。 MyObject是一个对象,并且有一个字符串name。我已覆盖其中的toString()方法以命名并且它正常工作。我建议使用此方法。

topicDropDown = new DropDownChoice<MyObject>("wicktID", new PropertyModel<MyObject>       (this.object, "exp"), new LoadableDetachableModel<List<MyObject>>() {
        @Override
        protected List<MyObject> load() {
            return top.getAllObjects();

        }