1
cultureを「Ireland Currency」に設定して、footerTemplateに「€」を設定しようとしました。しかし、それは常に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>";
}
}
ありがとう!