gpt4 book ai didi

java - Vaadin 网格文本字段用于 boolean 字符串到 boolean 转换器

转载 作者:太空宇宙 更新时间:2023-11-04 10:40:04 24 4
gpt4 key购买 nike

在 Vaadin Grid (8.1.0) 中使用内联编辑功能时,我创建了 Bean 并使用 Grid 中的 setItems 方法来填充所有行。

但是当我双击一行进行编辑时,出现了异常。我以为我已经将 bean 的属性类型与 TextField 正确绑定(bind),但它仍然抛出异常。

以下是我的手动绑定(bind)代码,它为我喜欢用于编辑的文本字段查找 boolean 属性。

    Binder<RegistrationRecord> needFancialFlagBinder = new Binder<>(RegistrationRecord.class);
needFancialFlagBinder .forField ( needFancialFlagField )
.withNullRepresentation( "" )
.withConverter (new StringToBooleanConverter("Need financial flag must be true or false!"))
.bind ( RegistrationRecord:: isNeedFancialFlag, RegistrationRecord:: setNeedFancialFlag);

以下代码将 TextField 附加到网格中的列。

    registrationGrid.getColumn("needFancialFlag")
.setEditorComponent(needFancialFlagField)
.setExpandRatio(1);

下面是异常的一部分。 StringToBooleanConverter 是否只负责从字符串到 boolean 值的转换,而不是相反?另一个方向我应该使用什么方法?

    java.lang.ClassCastException: java.lang.Boolean cannot be cast to java.lang.String
at com.vaadin.ui.AbstractTextField.setValue(AbstractTextField.java:47) ~[vaadin-server-8.1.0.jar:8.1.0]
at com.vaadin.data.Binder$BindingImpl.initFieldValue(Binder.java:893) ~[vaadin-server-8.1.0.jar:8.1.0]
at com.vaadin.data.Binder$BindingImpl.access$100(Binder.java:766) ~[vaadin-server-8.1.0.jar:8.1.0]
at com.vaadin.data.Binder.lambda$readBean$2(Binder.java:1386) ~[vaadin-server-8.1.0.jar:8.1.0]
at java.lang.Iterable.forEach(Iterable.java:75) ~[na:1.8.0_121]

最佳答案

所以这个问题问得不充分。我想使用 TextField 来编辑网格列中的 boolean 模型成员,并且在该过程中的某个地方提出了更好的想法。我不应该使用 TextField,而应该使用 CheckBox。因此,解决方案得到了扭转,下面是正确的代码。请注意,这是 Vaadin 8.1.0。 (我发现Vaadin很快就换了很多版本。)

    private void addBooleanPropertyColumn(Grid theGrid, String propertyName, String caption) {
CheckBox bBox = new CheckBox();
Column<RegistrationRecord, String> adultFlagColumn = theGrid.addColumn(record->
"<span class=\"v-checkbox v-widget\"><input type=\"checkbox\" id=\"my-uid-1\" " + returnChecked(propertyName, record) + " > <label for=\"my-uid-1\"></label> </span>",
new HtmlRenderer());
adultFlagColumn.setId(propertyName)
.setCaption(caption)
.setEditorComponent(bBox)
.setExpandRatio(1);
}

这个概念是网格中的列支持渲染器、 validator 和编辑器的关联。一旦你了解了这一点,事情就变得简单了。

我没有使用 validator ,因为模型字段只是一个 boolean 值。值得注意的是,编辑器组件必须有一个关联的属性,因此 setID 是一个方便的 setter 。

关于java - Vaadin 网格文本字段用于 boolean 字符串到 boolean 转换器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49091025/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com