I have a property like so public decimal? MyProperty { get; set; }, it IS NOT required and IS nullable, but if I don't put a value > 0 the validator say that the field MyProperty must be a number, if I leave the field empty I receive the same error, and if I put a 0 (zero) I receive the same error.
Ex:
0 -> Error
1 -> Ok
0,00 -> Error
0,01 -> Ok
empty -> Error
I don't understand why this don't work, I'm using $.preferCulture("pt-BR"); but don't make sense, because the value 0,01 is accepted, than I don't believe that culture can be the problem.
PS: The validation don't work in client side, the server side work correctly.