我在带有验证的编辑器中使用TextBox
- 和ValueListBox
-objects 作为子编辑器,并在
showErrors(List<EditorError> errorList)
方法。
它适用于TextBox
-objects。
存在 -objects的违规行为,ValueListBox
但错误未映射到errorList
.
GWT 编辑器验证是否适用于ValueListBox
?
我在带有验证的编辑器中使用TextBox
- 和ValueListBox
-objects 作为子编辑器,并在
showErrors(List<EditorError> errorList)
方法。
它适用于TextBox
-objects。
存在 -objects的违规行为,ValueListBox
但错误未映射到errorList
.
GWT 编辑器验证是否适用于ValueListBox
?
我猜您正在使用实现HasEditorErros接口的ValueBoxEditorDecorator 。TextBox
这就是显示验证错误的原因。
ValueListBox没有实现HasEditorErrors
接口接口,因此不会显示任何错误。
您必须创建自己的(有关详细信息,ValueListBoxEditorDecorator
请参见此处、此处或此处)