Weird validation error if NumericTextBox has some specific values

I have the following html and js:

<form id="FormTest" novalidate>
    <input id="NumericTest" value="300000" name="NumericTest">
</form>

    let NumericTest = new ej.inputs.NumericTextBox({
        placeholder: "Test",
        floatLabelType: "Auto"
    }, "#NumericTest");

    let formValidator = new ej.inputs.FormValidator("#FormTest", {
        rules: {
            NumericTest: {required: true}
        }
    });

When I run formValidator.validate(), it keeps showing that the field is required. This happens almost for any 6 figure.

4 Replies 1 reply marked as answer

AN Andrei April 21, 2021 12:37 PM UTC

There's a small chance the error is coming from the chrome version.
My dev machine has 66.0.3359.181 (Official Build) (64-bit).

I've tested on a more recent version and there are no problems.


PM Ponmani Murugaiyan Syncfusion Team April 22, 2021 05:30 PM UTC

Hi Andrei, 

Thanks for contacting Syncfusion support. 

Based on the provided information, we were able to reproduce the reported issue in Chrome version 66.0.33. However, the issue has been fixed in the latest version of Chrome. We are currently investigating further with the reported issue and will provide details in two business days. 

In the meantime, could you please let us know if you were able to upgrade the Chrome version on your end to resolve this error?  

Regards, 
Ponmani M 


Marked as answer

AN Andrei April 22, 2021 05:57 PM UTC

Hi.

Yes, I've updated my chrome version. Everything is ok now.

Thanks for the support.


PM Ponmani Murugaiyan Syncfusion Team April 23, 2021 04:57 AM UTC

Hi Andrei, 

Thanks for the update that you have upgraded the chrome version to resolve this issue.  

Regards, 
Ponmani M 


Loader.
Up arrow icon