gustavnavar / Grid.Blazor

Grid component with CRUD for Blazor (client-side and server-side) and ASP.NET Core MVC
GNU Lesser General Public License v2.1
697 stars 135 forks source link

Totals column calculated by other totals #356

Closed comichael closed 1 year ago

comichael commented 2 years ago

I need to calculate the overall performance factor (total planned hours vs total actual hours) based on search / filtering - e.g what is currently shown in the grid.

Each grid row has fields "Planned Hours" and "Actual Hours". In the "Totals" / summary, I have the totals needed. I just need to add a simple calculation based on those totals, and put it in another total field called "Performance Factor".

Is there a way to do that?

gustavnavar commented 2 years ago

Package version 3.4.0 supports this feature.

You can find more info here

The samples also include this functionality

comichael commented 2 years ago

Package version 3.4.0 supports this feature.

That is awesome. Thanks a lot for taking time to implement this feature.