In my Kendo column, I have an "amount" field presented in dollar format. Here are the details of the corresponding column:
{
field: 'INVOICE_AMOUNT_ORIGINAL',
title: $translate.instant('invoiceAmount'),
format: '{0:n}',
headerTemplate: '{{ \'invAmount\' | translate }}',
attributes: {
style: 'text-align: right;'
},
width: 115
},
Now, I want to change this format to Euro instead of dollars. After consulting the Kendo documentation, I tried changing the format in the code above to '{0:c}', but it still shows the dollar symbol. How can I convert the format to display in Euros without any actual conversion?