我綁定了12個圓柱(12個月)的劍道網格,我想最後一列將是所有12個月(總共一年)的聚合.. 我有這樣的:劍道網格聚合列
@(Html.Kendo().Grid<WebAnalise.Models.map_sel_fabr_prod>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.nameFabr).Visible(true).Width(50).Title("Fabr");
columns.Bound(p => p.nameProd).Width(100).Title("Prod");
columns.Bound(p => p.tot01).Width(30).Title("Jan");
columns.Bound(p => p.tot02).Width(30).Title("Fev");
columns.Bound(p => p.tot03).Width(30).Title("Mar");
columns.Bound(p => p.tot04).Width(30).Title("Abr");
columns.Bound(p => p.tot05).Width(30).Title("Mai");
columns.Bound(p => p.tot06).Width(30).Title("Jun");
columns.Bound(p => p.tot07).Width(30).Title("Jul");
columns.Bound(p => p.tot08).Width(30).Title("Ago");
columns.Bound(p => p.tot09).Width(30).Title("Set");
columns.Bound(p => p.tot10).Width(30).Title("Out");
columns.Bound(p => p.tot11).Width(30).Title("Nov");
columns.Bound(p => p.tot12).Width(30).Title("Dez");
//我想在這裏添加新的列!像這樣的東西,但聚合! (tot01 + tot02 + tot03 ... + tot12)!!不僅從一列中獲得價值:
columns.Bound(p => p.tot01).Width(30).Title("TOT");
})
任何人都可以幫忙嗎?
我看到的例子,但我不明白如何使用我的代碼?..我想其他列的聚集列... –