我正在将Telerik Grid(Razor)与MVC一起使用。下面是项目的配置。
MVC-4.0.0.0
Telerik.Web.Mvc(.dll)-2012.1.214.340
.Columns(columns =>
{
columns.Bound(x =>x.Id).Width(100).Aggregate(aggregates => aggregates.Count())
.FooterTemplate(@<text>Total Count: @item.Count</text>)
.GroupFooterTemplate(@<text>Count: @item.Count</text>);
columns.Bound(x => x.Name).Width(50);
columns.Bound(x => x.Price).Width(100);
columns.Bound(x => x.Qty).Aggregate(agg => agg.Count())
.FooterTemplate(@<text> Total Qty: <span>@item.Count</span> </text>);
在上面的代码块中,我添加了 FooterTemplate 用于显示Count,但它仅显示标签文本。请检查下图。
。