Numeric resets to null over 10 digits

Hi,

I have a nullable numeric input and anytime I go over 10 digits, it resets to null. This is reproduceable in the demo:

This is causing havoc on the validations I have for it. I'd like the value entered to still be present but have the numeric range validator to kick in but if it resets, it kicks off the required validator because its now null.

Was this by design?

Many Thanks

Hi @MrGell,

Yes, this is by design. The RadzenNumeric component tries to parse the string value as the target value type. Probably the target type can't fit 10 digits and that's why parsing fails.

Many thanks for your response, I managed to fix this by changing the column TValue/Classes from int to long.