我想在客户端页脚中以{0:N0}
格式显示我的网格列的汇总
columns.Bound(p => p.DoctorCost).Format("{0:N0}").Title("Totall")
.ClientFooterTemplate("#= sum # ").Format("{0:N0}");
但它不起作用......它显示没有任何格式的值。
答案 0 :(得分:1)
.ClientFooterTemplate("#= kendo.format('{0:N0}', sum)#")