当我在BeanItemContainer中使用Vaadin的Grid时,我遇到了一些问题。它显示一行OK,但当我试图保存已编辑的行时,它会抛出:
java.lang.IllegalArgumentException: Given item id (uz.sample.backend.entity.MyBean@4d949367) does not exist in the container
at com.vaadin.ui.Grid$AbstractSelectionModel.checkItemIdExists(Grid.java:1367)
at com.vaadin.u
我正在开发一个Vaadin流(10.0.5)应用程序,里面有几个网格。所有这些使用的ListDataProvider从Viritin。
引起我头痛的那一列通常由200-300行(有些情况下有1200行)和13列组成。所有列都是可调整大小和可排序的,第二个标题行包含每个列的过滤器,就像应用程序中的其他网格一样。
当我在网格中滚动时,有时它会生成一个NPE:
java.lang.NullPointerException
at sun.reflect.GeneratedMethodAccessor403.invoke(Unknown Source)
at sun.reflect.Delegating
我正在使用vaadin网格组件作为视图,在其中显示一些网格数据,包括文本。在文本的列中,排序似乎不区分大小写。排序只在以大写字母开头的文本中进行,而以小写字母开头的排序则被忽略。
我检查了vaadin网格分类器的,它是一个辅助元素,用于在vaadin网格中排序,但无法获得所需的结果。
Please suggest some other way round. Help will be appreciated.