2

我正在我的 Web 应用程序中创建一个带有选择框的表单。我以下述方式使用 DropDownChoice + ChoiceRenderer 组合。它工作正常,但一方面 - in 不会预先选择默认值。

我已经为此苦苦挣扎了很长时间。我在互联网上找到了几个据说可以工作但对我不起作用的例子。

我的代码库看起来像这样(不相关的部分已被省略或简化以提高清晰度):

商业实体

public class MultivalueType
{
    private Long id;
    private String label;
    private String description;

    public MultivalueType(Long id, String label, String description) 
    {
        this.id = id
        this.label = label;
        this.description = description;
    }

    public Long getId()
    {
        return id;
    }

    public String getLabel() 
    {
        return label;
    }

    public String getDescription() 
    {
        return description;
    }
}

public class PropertySettings
{
    private Long id;
    private String property;
    private MultivalueType multivalueType;

    public PropertySettings(Long id, String property, MultivalueType multivalueType) 
    {
        this.id = id;
        this.property = property;
        this.multivalueType = multivalueType;
    }

    public MultivalueType getMultivalueType()
    {
        return multivalueType;
    }
}

public class PropertySettingsDao
{
    ...
    @Override
    public PropertySettings load(Long id)
    {
        String query = " ... query ... ";
        Object[] params = { id };
        return getJdbcTemplate().queryForObject(query, params, getRowMapper());
}
    ...
}

表单类

PropertySettings property = propertySettingsDao.load(propertyId);
IModel<PropertySettings> formModel = new CompoundPropertyModel<PropertySettings>(property);

Form<PropertySettings> form = new Form<PropertySettings>("editPropertyForm", formModel)
{
    @Override
    protected void onSubmit()
    {
        PropertySettings propertySettings = this.getModelObject();
        ...         
    }
};

form.add(createEnumSelectbox(multivalueTypeDao, new PropertyModel<MultivalueType>(property, "multivalueType"), "multivalueType", true));

add(form);

创建选择框

protected DropDownChoice<MultivalueType> createEnumSelectbox(DaoForEntityWithSurrogateKey<MultivalueType> dao, IModel<MultivalueType> model, String componentName, boolean required)
{
    // create the model
    IModel<List<MultivalueType>> choices = createModelForListView(dao);

    // prepare the select-box renderer
    ChoiceRenderer<MultivalueType> renderer = new ChoiceRenderer<MultivalueType>("label", "id");

    // create the select-box component
    DropDownChoice<MultivalueType> selectBox = new DropDownChoice<MultivalueType>
    (
        componentName,
        model,
        choices,
        renderer
    );

    // mark the select-box as a required form field
    selectBox.setRequired(required);

    return selectBox;
}

protected IModel<List<MultivalueType>> createModelForListView(final DaoForEntityWithSurrogateKey<MultivalueType> dao)
{
    return new LoadableDetachableModel<List<MultivalueType>>() 
    {
        @Override
        protected List<BO> load() 
        {
            return dao.loadAll();
        }
     };
}

请注意,我将默认 MultivalueType 实例(冗余)设置为 Form 组件的 CompundPropertyModel 和直接作为 DropDownChoice 组件的模型。根据我在网上找到的,这应该足以让选择框在页面加载时预先选择相应的值,但它不起作用。

我已经验证了 Form 组件中的属性变量(从 DAO 获得)确实包含有效数据。

另请注意,除了预选外,一切正常 - 我在表单的 onSubmit 方法中正确填充了 propertySettings 变量。

4

1 回答 1

5

我终于设法找到了问题所在。

我意识到当我显示表单时,Wicket 会记录以下警告:

Model returned object ... which is not available in the list of selected objects.

根据该错误消息,我发现为了使默认选项的预选起作用,业务实体必须覆盖 equals 方法(请参阅相应的 JIRA 票证)。至少在我正在使用的 Wicket 版本 1.5.4 中。

希望这可以帮助其他遇到同样问题的人!

于 2012-09-01T08:47:58.680 回答