How can I render a currency when all I have is a number in cents? I've tried with factor set to 0.01 but this only works for the input once it's selected. When not selected it shows 8999,00 while when I select it, goes to 89,99.
I have a reproducer here: https://dojo.telerik.com/uDUdErOG
$(".currency").kendoNumericTextBox({
value: 8999,
format: "c2",
factor: 0.01,
min: 0,
max: 8999,
step: 1,
restrictDecimals: true,
decimals: 2,
spinners: false,
});
});