I am having a rounding issue with kendo numeric textbox as negative values are not getting rounded off properly. For example, -1.2355 gets displayed as -1.235 instead of -1.236
The configured settings for the said control is as follows:
ReturnValueInputOptions={
max:999999,
min:-999999,
format: 'n3',
decimals: 9
};
If we enter 1.2355 in the numeric textbox, it gets displayed as 1.236, which is fine.
If we type negative value -1.2355 it gets displayed as -1.235. Is there a way to get this value rounded off and displayed as -1.236
The configured settings for the said control is as follows:
ReturnValueInputOptions={
max:999999,
min:-999999,
format: 'n3',
decimals: 9
};
If we enter 1.2355 in the numeric textbox, it gets displayed as 1.236, which is fine.
If we type negative value -1.2355 it gets displayed as -1.235. Is there a way to get this value rounded off and displayed as -1.236