Wicket,DropDownChoice如何选择更改另一个DropDownChoice的选项?

时间:2014-04-29 00:23:54

标签: java wicket dropdownchoice

Wicket中有什么东西要做两个下拉选项,以便第一个doprdownchoice的第一个选择改变第二个选项的所有选项吗?

2 个答案:

答案 0 :(得分:5)

您应该使用第一个选择的值来确定第二个选择的值。

我在这个例子中选择使用AjaxFormComponentUpdatingBehavior来触发Ajax更新并执行值更改。我提供了一个简单的例子,将第二个DropDownChoice填入第一个被选中的国家的联邦州。

请注意,我在此示例中使用了wicket 1.4,但在新版本中不应该有太多不同。

   // two countries
   final String aut = "AUT";
   final String ger = "GER";

   // their states
   final List<String> autStates = Arrays.asList(new String[] { "V", "T", "S", "W" });
   final List<String> gerStates = Arrays.asList(new String[] { "NRW", "B", "BW" });

   // mapping, you should really get this data from a service or have a constant
   final Map<String, List<String>> countryToState = new HashMap<String, List<String>>(2);
   countryToState.put(aut, autStates);
   countryToState.put(ger, gerStates);

   // the container to send back via ajax
   final WebMarkupContainer cont = new WebMarkupContainer("cont");
   cont.setOutputMarkupId(true);
   add(cont);

   final Model<String> stateModel = new Model<String>();
   final DropDownChoice<String> countries = new DropDownChoice<String>("countries", new Model<String>(), new ArrayList<String>(countryToState.keySet()));
   final DropDownChoice<String> states = new DropDownChoice<String>("states", stateModel, new LoadableDetachableModel<List<String>>() {

        @Override
        protected List<String> load() {
            final String country = countries.getModelObject();
            final List<String> list = countryToState.get(country);

            return list != null ? list : new ArrayList<String>(0);
        }
   });

   countries.add(new AjaxFormComponentUpdatingBehavior("onchange") {

    @Override
    protected void onUpdate(AjaxRequestTarget target) {         
                    // just add the container to see the results
        target.addComponent(cont);
    }

   });

   cont.add(countries);
   cont.add(states);

答案 1 :(得分:0)

第一个DropDownChoice应更新基于ModelDropDownChoice并将第二个DDC添加到AjaxRequestTarget

This constructor接受该模型,您可以存储对它的引用,以便能够更改它。