This question is locked. New answers and comments are not allowed.
Hi,
I have the following defined as part of the Grid Control:
The Footer works fine when there are values in the SumInsured, but if r.SumInsured = NULL then FooterTemplate Fails, how do I code for this.
Thamks
I have the following defined as part of the Grid Control:
.....Columns(columns => { columns.Bound(r => r.CBCoverType).Title("Cover"); columns.Bound(r => r.SumInsured) .Aggregate(aggregates => aggregates.Sum()) .FooterTemplate(@<text>Sum Insured: @item.Sum.Format("{0}")</text>);......The Footer works fine when there are values in the SumInsured, but if r.SumInsured = NULL then FooterTemplate Fails, how do I code for this.
Thamks