At the following URL: http://demos.telerik.com/kendo-ui/numerictextbox/index
It shows 3 decimal places requested in the code
// create Curerncy NumericTextBox from input HTML element
$(
"#currency"
).kendoNumericTextBox({ format:
"c"
, decimals: 3});
However, the display only shows 2.
Changing the decimals in the options seems to have no results in the Dojo.
My actual goal is to have no decimals, how can I do this?