I need to include a summarized total of records at the bottom of my Kendo Grid (table
), below all the tr
(s) similar to this example.
Unfortunately, the Kendo React UI grid only allows for a footer for groups and does not support footer templates in Kendo React for the data grid.
To work around this limitation, I have been manually adjusting the CSS of the last row of the table:
.general-ledger-balance .k-grid-content table > tbody > tr.k-master-row:last-child {
font-weight: bold;
position: fixed;
}
However, this approach is causing issues with the aggregate tr
.
Any assistance or suggestions would be greatly appreciated?