I have this code below
$("#numeric").kendoNumericTextBox({
min: 1,
max: 100,
decimals: 0,
format: "# pieces",
spinners: true,
restrictDecimals: true
});
My problem is that if user enter "0", then tab out, value changes to "1" only, not "1 pieces"
So it does not follow the format if the entered value is below the min. No problem if value is more than max.
My version is "2018.3.1017", upgrade is not an option.
Do you have a workaround on how to force to change the display value with format (may be on the onblur event perhaps)?