We noticed that when we applied the ValidCurrency validation rule to the grid that we COULD enter values like:
02
2.3
10
but NOT: 2
A single digit value was not allowed, which doesn’t seem right. On looking at the regex rule for this, I believe it should be changed from:
^$?\s?\d+?[.,,]?\d+?\s?$?$
to
^$?\s?\d*?[.,,]?\d+?\s?$?$
Note the \d* instead of \d+.