-
Notifications
You must be signed in to change notification settings - Fork 160
Closed
Labels
🧰 feature-request✅ status: resolvedApplies to issues that have pending PRs resolving them, or PRs that have already merged.Applies to issues that have pending PRs resolving them, or PRs that have already merged.grid: generalgrid: summaries
Description
Is your feature request related to a problem? Please describe.
Depending on a business logic, a value from column X may be needed to calculate summaries for column Y. For example, lets define a custom summary:
class MySummary extends IgxNumberSummaryOperand {
operate(data?: any[]): IgxSummaryResult[] {
// data only contains the data for the corresponding column Y
// some would like to access value from column X for the given record
return result;
}
}Describe the solution you'd like
When the operate method is called, have the option to access other fields data as well.
Describe alternatives you've considered
A complete manual calculating of sumamries that is rendered inside the grid footer. Makes no use of igxGrid Summaries
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
🧰 feature-request✅ status: resolvedApplies to issues that have pending PRs resolving them, or PRs that have already merged.Applies to issues that have pending PRs resolving them, or PRs that have already merged.grid: generalgrid: summaries