- Home
- Forum
- Xamarin.Forms
- ISummaryAggregate
ISummaryAggregate
Hi,
I use CustomAggregate for customization group header text. Until DataGrid component version 17.2.0.46 is everything OK but in higher versions (including actual 17.3.0.9 beta) I´ve got this error:
CS0738 PageAlarms.CustomAggregate does not implement an ISummaryAggregate.CalculateAggregateFunc(). PageAlarms.CustomAggregate.CalculateAggregateFunc() cannot implement the ISummaryAggregate.CalculateAggregateFunc(), member because it does not have the corresponding return type Action<IEnumerable, string, PropertyDescriptor>.
//My code:
public class CustomAggregate : ISummaryAggregate
{
public CustomAggregate()
{
}
public string Date { get; set; }
public Action<System.Collections.IEnumerable, string, PropertyInfo> CalculateAggregateFunc()
{
return (items, property, pd) =>
{
var enumerableItems = items as IEnumerable<PageAlarmsModel>;
if (pd.Name == "Date")
{
var value = (enumerableItems.First() as PageAlarmsModel).Date;
var count = enumerableItems.Count().ToString();
this.Date = value.Day + "." + value.Month + "." + value.Year + " - " + "Count: " + count;
}
};
}
}
//Interface:
public interface ISummaryAggregate
{
// Summary:
// Calculates the custom aggregate func for the specified summary column.
//
// Return:
// The custom aggregate func for the specified summary column.
Action<IEnumerable, string, PropertyDescriptor> CalculateAggregateFunc();
}
SIGN IN To post a reply.
1 Reply
BS
Balasubramani Sundaram
Syncfusion Team
September 25, 2019 01:37 PM UTC
Hi Tomas,
Thank you for contacting Syncfusion support.
It’s already a known issue because we had changed the “Propertyinfo” to "PropertyDescriptor" in summary aggregated due to the reason of upgrading the source to .Net Standard and we have already mentioned about this breaking change in our release note and well we have to change the UG code snippet.
Please refer the below sample, UG and code snippet,
Code snippet [C#]
|
public class CustomeAggreate : ISummaryAggregate
{
public Action<IEnumerable, string, PropertyDescriptor> CalculateAggregateFunc()
{
}
} |
Sample Link: https://www.syncfusion.com/downloads/support/directtrac/general/ze/SupportXForms-2112098418
Release Note: https://help.syncfusion.com/xamarin/release-notes/v17.2.0.47?type=all#sfdatagrid-breaking-changes
We hope this helps. Please let us know, if you need any further assistance.
Regards,
Balasubramani Sundaram.
Balasubramani Sundaram.
SIGN IN To post a reply.
- 1 Reply
- 2 Participants
-
UN Unknown
- Sep 25, 2019 06:35 AM UTC
- Sep 25, 2019 01:37 PM UTC