vaadin CheckBoxGroup 不呈现

问题描述

我的程序可以添加或更新配置文件。在更新配置文件对话框中,选择您要更新的配置文件后。字段应填充选定的配置文件值。问题始于填充 CheckBoxGroup 字段。 (我的 CheckBoxGroup 字段名称是 listBox 所以在那之后我会这样称呼它)。当我检查我的 listBox 选择的项目时,我可以看到 listBox 选择的值是真的,但在前端,我看不到任何选择。所以基本上我想重新选择 addValuechangelistener 中的列表,但 CheckBoxGroup 不重新渲染。

listBox = new CheckBoxGroup<>();
listBox.setItemLabelGenerator(Lists::getListName);
listBox.setItems();
listBox.setItems(listsList);
listBox.addThemeVariants(CheckBoxGroupVariant.LUMO_VERTICAL);
listBox.setHeight("200px");
listBox.getStyle().set("overflow","AUTO");
listBox.setHelperText("Seçilen Listeler");
listBox.addThemeVariants(CheckBoxGroupVariant.LUMO_HELPER_ABOVE_FIELD);

updateProfile.addValuechangelistener(e -> {
        setUpdateProfileValues();
    });
}

private void setUpdateProfileValues() {
    if (updateProfile.getValue() == null)
        return;
    updateProfileName.setValue(updateProfile.getValue().getProfileName());
    simAlgorithm.setValue(updateProfile.getValue().getSimAlgorithm());
    searchType.setValue(updateProfile.getValue().getSearchType());
    operationType.setValue(updateProfile.getValue().getoperatorType());
    simPercentage.setValue(updateProfile.getValue().getSimPercentage());
    numberOfResult.setValue(updateProfile.getValue().getNumberOfResults());
    List<Lists> selectedLists = updateProfile.getValue().getLists();
    selectedLists.forEach(lists -> log.error(lists.getListName()));
    //selectedLists.forEach(listBox::select);
    listBox.setValue(new HashSet<>(selectedLists));
    listBox.getSelectedItems().forEach(selectedList -> log.error(selectedList.getListName()));

}

这是我针对这个问题的相关代码。顺便说一句,当我检查日志时,我可以看到 listBox 具有真实的选定值。但我需要在前端页面显示

解决方法

我使用您的 listBox 初始化快速运行了一段代码,并且能够在前端将所有复选框设置为 true。这可能对您有所帮助:

listBox.getChildren().filter(Checkbox.class::isInstance)
            .map(Checkbox.class::cast)
            .forEach(c -> c.setValue(true));

这将检索 CheckboxGroup 中的所有复选框,检查它们是否是 Vaadin Checkbox 组件的实例,然后根据需要设置它们的 T/F 值。