I understand there are a few ways to format the numbers in the Angular Kendo UI Grid.
For example: {{decimal | kendoNumber:'c' }}
But instead of having a currency I would like to format the number in the following format (similar with the currency but without currency label):
123.123.123.123,11
(12 digits before the comma and two after the comma.) In Kendo there are some NumberFormatOptions but I could not figure out how to use them. Can anyone provide me some examples of how to use these NumberFormatOptions correctly?
Would be great. Thanks in advance.
You can try a 'n2' format option, it works in the same way but without currency symbol
{{ 123123123123.11 | kendoNumber:'n2' }}