【发布时间】:2021-06-17 12:10:39
【问题描述】:
我的程序可以添加或更新配置文件。在更新配置文件对话框中,选择您要更新的配置文件后。字段应填充选定的配置文件值。问题从填写 CheckboxGroup 字段开始。 (我的 CheckboxGroup 字段名称是 listBox 所以在那之后我会这样称呼它)。当我检查我的 listBox 选定项目时,我可以看到 listBox 选定的值是 true,但在前端,我看不到任何选择。所以基本上我想重新选择 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 具有真正的选定值。但我需要显示在前端页面上。
【问题讨论】:
标签: java spring-boot frontend vaadin vaadin14