How to disable the default validation check

0
Hi. I am looking for a way to disable the validation check.   If you enter a non-numeric value in a text box for numeric value, a validation error will be displayed.   I asked a question on the forum about how to change the way this validation error is displayed, and it was resolved.  ⇒https://community.mendix.com/link/questions/111743   In this case, I would like to know how to prevent this validation check from running. Is this possible?
asked
1 answers
1

Hi,

What is the specific problem you're trying to resolve with this? To my knowledge it is not possible to bypass this check, so if you'd want to fill in a string value I'd recommend to use a string attribute for this. If you need to save it as an integer, you might have to implement a second integer attribute to which you can copy the input data and apply the validations yourself when copying.

answered