Ticket T930445
Visible to All Users

Form - Async validation is being called multiple times

created 5 years ago

Hi Team,

We are using async validator rule to validate a field - project name.
In dxForm, to validate if the Project Name entered already exists or not, we need to make server side call using async. This is working fine.
Now, when we are submitting the form, all the fields are being validated, async is being called again.

if the form is valid, we are making server-side call to save the form, which is again causing async validator to be called twice. This is manipulating the response for the project name validator and error message is shown on the page even if the form is valid.

Code:

Code
<dxi-item [colSpan]="2" dataField="name" [editorOptions]="{ stylingMode: DX_FORM_APPEARANCE, inputAttr: { autocomplete: 'chrome-off' }, disabled: !this.projectForm.customerId }" [validationRules]="projectNameValidator"> <dxo-label text="Project Name"></dxo-label></dxi-item>
Code
projectNameValidator = [ { type: 'required', message: 'Project Name is required', }, { type: 'async', message: 'A customer may only use a project name once', validationCallback: this.checkForProjectNameDuplicates.bind(this), },];
Code
async checkForProjectNameDuplicates(e) { return await this.projectService.nameExistsForCustomer(this.tokenId, e.value, this.projectForm.customerId).toPromise(); }

On Save Button Click:

Code
onSaveFormClick(e) { const formVal = this.form.instance.validate(); if (formVal.isValid) { save functionality... }}

On submitting the valid form, error is being shown - 'A customer may only use a project name once'.

Answers approved by DevExpress Support

created 5 years ago

Hi,

Thank you for your code. The validate method doesn't return a final result immediately if one of the items has an Async Rule. So, you need to check the isValid field in the complete callback.

Also, you can set reevaluate to false to avoid sending a request if a value is not changed.

Please test these suggestions and let us know your results.

    Comments (3)

      Thank you for your assistance.

      "reevaluate: false" worked for me. Don't know how I missed it. Have used it for custom validations at multiple places… :)

      Thanks again.

      Artem (DevExpress Support) 5 years ago

        You're welcome, Gayatri. Would you mind if we make this thread public so other users can find it?

          No worries. Please go ahead.

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.