2

Vaadin Grid に要約行を追加することは可能ですか?

現在、列を結合し、上部に概要を示すヘッダー行を持つグリッドがあります。ただし、セクションの終わりを示すために、グリッド全体に同様のヘッダーを追加したいと考えています。ヘッダー セクションにヘッダーを追加することだけが可能であるように見えます。これは、グリッドのヘッドを単に埋めるだけです。フッターは、下部で同じことを行います。

しかし、新しいグリッド コンポーネントを作成せずに、グリッド内に特別な行が必要な場合はどうすればよいでしょうか? 目に見えるデータ区切りとなるもの。

4

1 に答える 1

2

必要なものとアプリの複雑さに応じてfake、多少の (おそらくマイナーな) 労力で何かを行うことができます。以下に簡単な例を示します。

BeanItemContainer1)行の両方のカテゴリを表示するために使用する共通クラス

public abstract class Row {
    private String name;
    private int amount;

    public Row(String name, int amount) {
        this.name = name;
        this.amount = amount;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAmount() {
        return amount;
    }

    public void setAmount(int amount) {
        this.amount = amount;
    }

    // provide a custom style/type for the current row
    public abstract String getRowType();
}

2)レギュラー商品列

public class ProductRow extends Row {
    public ProductRow(String name, int amount) {
        super(name, amount);
    }

    @Override
    public String getRowType() {
        return "product-row";
    }
}

3)製品の前のバッチの合計を表示する特別な行

public class TotalRow extends Row {
    public TotalRow(int sum) {
        super("Total", sum);
    }

    @Override
    public String getRowType() {
        return "total-row";
    }
}

4) グリッド自体

public class GridWithIntermediateRowsComponent extends VerticalLayout {
    private static final String[] AVAILABLE_PRODUCTS = new String[]{"Banana", "Apple", "Coconut", "Pineapple", "Melon"};
    private Random random = new Random();

    public GridWithIntermediateRowsComponent() {
        BeanItemContainer<Row> container = new BeanItemContainer<>(Row.class);
        Grid grid = new Grid(container);

        // show only the relevant columns, the style one is used only to change the background
        grid.setColumns("name", "amount");

        // set a style generator so we can draw the "total" rows differently
        grid.setCellStyleGenerator(row -> ((Row) row.getItemId()).getRowType());

        // create some dummy data to display
        for (int i = 0; i < random.nextInt(10) + 1; i++) {
            container.addAll(createItemBatch(random.nextInt(5) + 1));
        }

        addComponent(grid);
    }

    private List<Row> createItemBatch(int total) {
        List<Row> rows = new ArrayList<>(total + 1);

        // add a batch of products
        String product = AVAILABLE_PRODUCTS[random.nextInt(AVAILABLE_PRODUCTS.length)];
        for (int i = 0; i < total; i++) {
            rows.add(new ProductRow(product, random.nextInt(100) + 1));
        }

        // calculate and add a "total row"
        rows.add(calculateTotal(rows));

        return rows;
    }

    private Row calculateTotal(List<Row> rows) {
        return new TotalRow(rows.stream().mapToInt(Row::getAmount).sum());
    }
}

5) テーマのスタイル

@mixin mytheme {
  @include valo;
  // Insert your own theme rules here

  .v-grid-row > td.total-row {
    background-color: #c4e7b7;
    font-weight: bold;
  }
}

6) 結果

カスタム中間合計行

于 2016-07-28T12:01:37.013 に答える