本文介绍了在Wicket DropDownChoice中,如何替换“选择一个"选项卡.到另一个文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个如下所示的DropDownChoice:

I have a DropDownChoice like below:

    final DropDownChoice<Term> terms = new DropDownChoice("terms", new Model<Term>(), new Model(new ArrayList(termDao.findAll())), new IChoiceRenderer<Term>() {
        public Object getDisplayValue(Term object) {
            return object.getIdentifier();
        }

        public String getIdValue(Term object, int index) {
            return object.getId().toString();
        }
    });

我要使用全部选择"而不是选择全部".我该怎么办?

I want to have "Choose All" instead of "Choose one". How can I do that?

推荐答案

  1. 为您的DropDownChoice设置标记ID .: terms.setMarkupId("termsDDC");

为您的表单/面板/页面创建一个.properties文件.例如:mypanel.properties

Create a .properties file for your form/panel/page. For example: mypanel.properties

在属性文件中写入:termsDDC.null=Choose All

参考: https://cwiki.apache.org/WICKET/dropdownchoice.html

这篇关于在Wicket DropDownChoice中,如何替换“选择一个"选项卡.到另一个文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-11 01:56