Hi!
I have a custom collection class that implements the IEnumerable interface like this:
When I bind this to a radgrid, the rows corresponding to the items in the collections are displayed as they should.
But, the totals are not listed in the footer. Do I need to implement a specific interface to make it work?
If I bind the grid to an IList<entities>, the totals are displayed as they should.
Can you please help me?
Best regards
Henrik
I have a custom collection class that implements the IEnumerable interface like this:
| public class BalanceSummering : IBalanceSummering, IEnumerable<IBalanceSum> | |
| { | |
| ... | |
| } |
When I bind this to a radgrid, the rows corresponding to the items in the collections are displayed as they should.
But, the totals are not listed in the footer. Do I need to implement a specific interface to make it work?
If I bind the grid to an IList<entities>, the totals are displayed as they should.
Can you please help me?
Best regards
Henrik