我是Vaadin的新开发人员,但有一个小问题,希望可以在这里解决。

实际上,我有一个带有一些数据的组合框,其中的一个过滤器可以找到一些匹配项,因此...我需要在组合框中输入需要的新用户值。问题是我无法输入新值,因为执行此操作时,过滤器将删除新提案。

我的代码...

    //Select select_editable = new Select();
    ComboBox cbEducation = new ComboBox();
    cbEducation.setTextInputAllowed(true);
    cbEducation.setNewItemsAllowed(true);
    cbEducation.setFilteringMode(AbstractSelect.Filtering.FILTERINGMODE_CONTAINS);
    //Fill the component with some items.
    for (int i = 0; i < planets.length; i++)
        for (int j = 0; j < planets.length; j++) {
            cbEducation.addItem(planets[j] + " to " + planets[i]);
        }
    //select_editable.
    mainLayout.addComponent(cbEducation, 1, 0);
    mainLayout.setComponentAlignment(cbEducation, new Alignment(33));


我希望有人能帮助我...无论如何感谢您的阅读

提前致谢!

最佳答案

如果要在输入新值后立即看到它们,则必须将组合框立即模式设置为true。

cbEducation.setImmediate(true);


如果使用VisualDesigner创建布局,请小心。它将所有组件的立即状态设置为false。希望这个不错的工具能尽快得到更新。

09-26 20:06