【问题标题】:How to set culture to Kendo grid column?如何将文化设置为剑道网格列?
【发布时间】:2017-03-10 15:09:18
【问题描述】:

我尝试将一种文化设置为爱尔兰货币“€”到 footerTemplate。但它总是在 footerTemplate 中设置 US '$' 货币。

示例列:

{
      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>";
       }
    }

提前致谢!

【问题讨论】:

    标签: angularjs kendo-ui kendo-grid


    【解决方案1】:

    您需要在剑道中设置当前文化。 See documentation here。请注意,您还需要在页面中包含相应的文化脚本。

    我创建了一个JS Fiddle,在页脚模板中显示带有文化 en-IE 的货币格式。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-11-06
      • 2017-05-17
      • 1970-01-01
      相关资源
      最近更新 更多