欧元格式kendo网格列Angular JS

时间:2018-12-03 20:03:39

标签: javascript angularjs kendo-ui kendo-grid

我在剑道中有一列金额,该列以美元格式显示,相应的列详细信息为

{
  field: 'INVOICE_AMOUNT_ORIGINAL',
  title: $translate.instant('invoiceAmount'),
  format: '{0:n}',
  headerTemplate: '{{ \'invAmount\' | translate }}',
  attributes: {
    style: 'text-align: right;'
  },
  width: 115
},

我现在希望将此格式更改为欧元格式,从kendo纪录片中读取后,我尝试将上述代码中的格式设置为“ {0:c}”,但它在前面给出了美元符号,如何我可以将格式转换为欧元吗?我不希望任何转换,而只是从美元到欧元的格式

1 个答案:

答案 0 :(得分:0)

我认为您必须定义自己的货币this

---
[format]="{ style: 'currency', currency: 'EUR' }",
---

另一种解决方案可能是this方法:

 ---
 format: '{0:c3}', // converts to euro (according to the site)
 ---