Hello.
We're using the ej-numerictextbox control. We've implemented it using AngularJS.
We are binding to it via the ng-model directive, and the e-value directive.
Steps to Recreate
We've encountered the following problem:
We have a max value of 4000 being applied to the control (using e-maxvalue="4000").
When enter 4000 into the control.
We then enter an additional 00 and it displays as 40000 (the first 0 entered isn't displayed, the second is). This could occur if the user holds down the 0s as a shortcut to get the max value.
If we click or tab away, it reverts to display 4,000 (which is great - that's the value we want).
However, the value associated with the control is actually 4,0000. And as a result, this is what is saved to the database.
Could you fix the control please so that the value associated with the control in this instance is what's displayed to the user.
Many thanks.