table 中的汇总行,SumTableControl

Summary row in table, SumTableControl

在 table 字段中,左下角有搜索图标,还有聚合图标选项(在 Eclipse Scout Demo 中看到)..但是如何将该控件添加到 table , 并使其从一开始就可见。

我在 table 中有一些列需要汇总。

您在 table 页脚中看到的图标是一个名为 'table controls' 的概念。您可以像这样简单地激活聚合 table 控件:

public class MyTable extends AbstractTable {

    @Override
    protected List<Class<? extends ITableControl>> getConfiguredTableControls() {
        return Collections.singletonList(AggregateTableControl.class);
    }

    @Override
    protected void execInitTable() {
        getTableControl(AggregateTableControl.class).setSelected(true);
    }
}