If I have below code
$("#numeric").kendoNumericTextBox({
min: 0.25,
max: 20,
decimals: 2,
format: "#.00 years",
spinners: true,
restrictDecimals: true,
step: 0.25
});
Using the spinners, if the value changes to a whole number (eg: 1, 2, 3, etc...), it shows "1", "2", etc...
I just wanted to display like "1.00", "2.00" while the input is still in focus. Is this possible?