0

I want to add an aggregate of records at the end of the Kendo Grid (table), bellow all of the tr(s) like this sample.

Sadly, Kendo React UI grid only supports footer for groups and footer templates are not supported in Kendo React for the data grid.

I have to modify the CSS of the last row of the table manually :

.general-ledger-balance .k-grid-content table > tbody > tr.k-master-row:last-child {
    font-weight: bold;
    position: fixed;
}

But this solution is messing aggregate tr up.

Any help would be appreciated?

Aref Zamani
  • 2,023
  • 2
  • 20
  • 40

1 Answers1

2

Currently there is no build-in way of adding global aggregates, however there is already feature request logged in Github. You can follow the feature progress there:

Vladimir Iliev
  • 1,871
  • 16
  • 26