Good day,
I have a numeric textbox which looks like this:
$('#feeValue').width(250).kendoNumericTextBox({
format: 'c2'
});
My culture is "en-ZA".
I need the textbox to allow me to change the cents value when I enter a currency amount.
Right now if I enter "R 5,25", as soon as the textbox looses focus, it changes the value to "R 5,00". It doesn't seem to round down, because if I enter "R 5,85", it still then goes back to "R 5,00".
I tried to set the "decimals: 2" parameter, and still nothing.
Is it maybe a type of format I need to have to be able to edit the cent value of the amount?
Can someone please point me in the right direction?
Thank you for your help.