I have some hierarchical data where my Primary ItemSource is a List<foo> where foo contains a property List<MonthType> Months
In my gridView I can do the following and it displays the sub List<Months> amount information in columns
<telerik:GridViewDataColumn Header="Account Title" DataMemberBinding="{Binding AccountTitle}" />
<telerik:GridViewDataColumn Header="Jan" DataMemberBinding="{Binding Months[0].Amount}" />
But this does not work
<telerik:GridViewExpressionColumn Header="Total2" UniqueName="TotalValue2" DataFormatString="{}{0:C}" Expression="Months[0].Amount + ... + Months[11].Amount" />
If I put in a simple test - this works (Where RowID is a valid in in my data Object).
<telerik:GridViewExpressionColumn Header="Total" UniqueName="TotalValue" DataFormatString="{}{0:C}" Expression="RowID * 2" />
Any ideas on how to get this simple expressionColumn to work?