cuba-platform / cuba

CUBA Platform is a high level framework for enterprise applications development
https://www.cuba-platform.com
Apache License 2.0
1.34k stars 219 forks source link

Table total aggregation bottom row does not disappear if showTotalAggregation is set to false #3194

Closed Flaurite closed 3 years ago

Flaurite commented 3 years ago

Environment

Description of the bug or enhancement

See EN support forum: topic

Minimal reproducible example

1) Make aggregation for the table, for instance:

<groupTable id="table"
            width="100%"
            aggregationStyle="BOTTOM"
            showTotalAggregation="false"
            aggregatable="true"
            dataContainer="data_container">
    <actions> ... </actions>
    <columns>
        <column id="count">
            <aggregation type="SUM"/>
        </column>
        ...
    </columns>
    <buttonsPanel> ... </buttonsPanel>
</groupTable>

2) Set: aggregationStyle="BOTTOM" showTotalAggregation="false"