我试图将一种文化设置为爱尔兰货币'€'到footerTemplate。但它总是在页脚模板中设置美元'$'货币。
示例栏:
{
field: "IEGrantTotalAvg",
title: "%",
type: "number",
filterable: false,
format: "{0:c3}",
attributes: { "class": "right-align" },
footerTemplate: function (data) {
return "<div style='white-space:initial;float:right'>" + " " + kendo.toString((Avg == null ? 0 : Avg), "c3") + "</div>";
}
}
提前致谢!
答案 0 :(得分:1)
您需要在剑道中设置当前的文化。 See documentation here。请注意,您还需要在页面中包含相应的区域性文档。
我在页脚模板中创建了一个JS Fiddle显示带有culture en-IE的货币格式。