编程语言
首页 > 编程语言> > java – Vaadin – 如果我使用AbsoluteLayout,则不显示表数据

java – Vaadin – 如果我使用AbsoluteLayout,则不显示表数据

作者:互联网

目前我面临着与Vaadin Table相当奇怪的问题.如果我在表中使用AbsoluteLayout数据没有显示,但如果我使用,即Horizo​​ntalLayout,数据就会完美显示.
这有效:

import com.vaadin.annotations.AutoGenerated;
import com.vaadin.ui.CustomComponent;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.Table;

public class MyComposite extends CustomComponent {


    @AutoGenerated
    private HorizontalLayout mainLayout;
    @AutoGenerated
    private Table table;


    public MyComposite() {
        buildMainLayout();
        setCompositionRoot(mainLayout);
        // TODO add user code here

        table.addContainerProperty("First Name", String.class, null);
        table.addContainerProperty("Last Name", String.class, null);
        table.addContainerProperty("Year", Integer.class, null);

        table.addItem(new Object[] { "Nicolaus", "Copernicus",
                new Integer(1473) }, new Integer(1));
        table.addItem(new Object[] { "Tycho", "Brahe", new Integer(1546) },
                new Integer(2));

    }

    @AutoGenerated
    private HorizontalLayout buildMainLayout() {
        // common part: create layout
        mainLayout = new HorizontalLayout();
        mainLayout.setStyleName("blue");
        mainLayout.setImmediate(false);
        mainLayout.setWidth("100%");
        mainLayout.setHeight("100%");
        mainLayout.setMargin(false);

        // top-level component properties
        setWidth("100.0%");
        setHeight("100.0%");

        // table
        table = new Table();
        table.setImmediate(false);
        table.setWidth("100.0%");
        table.setHeight("100.0%");
        mainLayout.addComponent(table);

        return mainLayout;
    }

}

但这不是:

import com.vaadin.annotations.AutoGenerated;
import com.vaadin.ui.AbsoluteLayout;
import com.vaadin.ui.CustomComponent;
import com.vaadin.ui.Table;

public class MyComposite extends CustomComponent {


    @AutoGenerated
    private AbsoluteLayout mainLayout;
    @AutoGenerated
    private Table table;
    public MyComposite() {
        buildMainLayout();
        setCompositionRoot(mainLayout);
        // TODO add user code here

        table.addContainerProperty("First Name", String.class, null);
        table.addContainerProperty("Last Name", String.class, null);
        table.addContainerProperty("Year", Integer.class, null);

        table.addItem(new Object[] { "Nicolaus", "Copernicus",
                new Integer(1473) }, new Integer(1));
        table.addItem(new Object[] { "Tycho", "Brahe", new Integer(1546) },
                new Integer(2));

    }

    @AutoGenerated
    private AbsoluteLayout buildMainLayout() {
        // common part: create layout
        mainLayout = new AbsoluteLayout();
        mainLayout.setStyleName("blue");
        mainLayout.setImmediate(false);
        mainLayout.setWidth("100%");
        mainLayout.setHeight("100%");

        // top-level component properties
        setWidth("100.0%");
        setHeight("100.0%");

        // table
        table = new Table();
        table.setImmediate(false);
        table.setWidth("100.0%");
        table.setHeight("100.0%");
        mainLayout.addComponent(table);

        return mainLayout;
    }

}

两种情况都显示列的名称.有人能告诉我为什么会这样吗?提前致谢.

解决方法:

我能够重现你的问题.似乎Vaadin的家伙在这里描述了原因:
Vaadin book

引用:

A layout that contains components with percentual size must have a defined size!

If a layout has undefined size and a contained component has, say, 100% size, the component will try to fill the space given by the layout, while the layout will shrink to fit the space taken by the component, which is a paradox. This requirement holds for height and width separately. The debug mode allows detecting such invalid cases; see Section 11.3.5, “Inspecting Component Hierarchy”

对于AbsoluteLayout,到目前为止我找到的唯一解决方法是将表格尺寸设置为某个固定值.

标签:vaadin7,java,vaadin
来源: https://codeday.me/bug/20190830/1771363.html