代码之家  ›  专栏  ›  技术社区  ›  Angelo Fuchs

如何设置vaadin7网格创建后的数据类型

  •  0
  • Angelo Fuchs  · 技术社区  · 6 年前

    我正在使用vaadin-7设计器创建一个应该包含多个列的网格,其中一些列不是字符串。

    当我试图添加包含非字符串元素的行时,会出现错误:

    java.lang.IllegalArgumentException: Parameter 0(4711) is not an instance of java.lang.String
    at com.vaadin.ui.Grid.addRow(Grid.java:6821)
    

    如何向网格提供列应为整数的信息?

    由于我对构造函数没有影响(它由设计器调用),所以我需要一个不使用构造函数的解决方案(或者演示如何将新对象应用于设计器或之后的类似对象)

    1 回复  |  直到 6 年前
        1
  •  1
  •   Level_Up    6 年前

    如果您有权访问网格,则可以尝试定义整数列,如下所示:

    grid.addColumn("Column_Name", Integer.class);
    

    在使用网格(添加行)之前必须执行此操作。

    另一种方法是使用beanitemcontainer。此代码来自网格的vadding documantation:

    // Have some data
    Collection<Person> people = Lists.newArrayList(
        new Person("Nicolaus Copernicus", 1543),
        new Person("Galileo Galilei", 1564),
        new Person("Johannes Kepler", 1571));
    
     // Have a container of some type to contain the data
    BeanItemContainer<Person> container =
    new BeanItemContainer<Person>(Person.class, people);
    
    // Create a grid bound to the container
    Grid grid = new Grid(container);
    grid.setColumnOrder("name", "born");
    layout.addComponent(grid);
    

    有关详细信息: https://vaadin.com/docs/v7/framework/components/components-grid.html

    祝你好运!