Git Product home page Git Product logo

Comments (3)

horprogs avatar horprogs commented on May 25, 2024 1

I added .showErrors() method, so you could call it as validation.showErrors({ '#password': 'The password is invalid' }) to show the errors programmatically.

https://just-validate.dev/examples/#show-errors
https://just-validate.dev/documentation/#section-5-11

from just-validate.

horprogs avatar horprogs commented on May 25, 2024

Hi! Good point actually. There is a workaround for checking the ajax response, using async validator for the particular field. For example in your case for email and password it could be like this:

validation
    .addField('#email', [
      {
        rule: 'required',
      },
    ])
    .addField('#password', [
      {
        validator: (password, context) => () =>
          new Promise((resolve, reject) => {
            $.ajax({
              type: 'POST',
              url: 'login/',
              data: { email: context['#email'].elem.value, password: password },
              success: function (data) {
                resolve();
              },
              error: function () {
                reject();
              },
            });
          }),
      },
    ]);

The idea is to call the API endpoint not for the whole form, but for the particular field. Here you return Promise and resolve it if login endpoint is succeed and reject if it's failed (in that case the password field will be highlighted as invalid). The downside is you kind of have to call login endpoint again on onSuccess callback to make some additional actions (like redirecting to another page etc.) and I can understand this is not proper solution.

I will think and introduce something for this case. Thanks.

from just-validate.

muhammedcamsari avatar muhammedcamsari commented on May 25, 2024

Wonderful! .showErrors() is running. Thanks for the feature.

from just-validate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.