Git Product home page Git Product logo

Comments (4)

limcheekin avatar limcheekin commented on April 27, 2024

Hi Pascal,

Thanks for report the issue. Could you clone the project, apply the fix and send me pull request.

Thank you

from jquery-validation-ui.

pdemilly avatar pdemilly commented on April 27, 2024

OK! I did. Made the change ready to push them. However I have a question. in validate of JQueryRemoveValidationController param doesn't have all the fields value of the form. Therefore the binding doesn't happen which mean I cannot have a custom validator that check the value of another field. (ie password check). Where should I look to add this?

from jquery-validation-ui.

christopherKwiatkowski avatar christopherKwiatkowski commented on April 27, 2024

@pdemilly I just wanted to offer a suggestion, even though this thread is 3 months old and it is likely that you have already addressed the issue of not having a command object that is fully populated.
I added an additional property to the data object created by the JQueryValidationService.createRemoteJavaScriptConstraints method called serializedData:

    String remoteJavaScriptConstraints = "\t${constraintName.equals('unique') || constraintName.equals('validator')?constraintName:'custom'}: {\n" +
            "\turl: '${contextPath}/validation/validate',\n" +
            "\ttype: 'post',\n" +
            "\tdata: {\n" +
            "\t\tvalidatableClass: '${validatableClassName}',\n" +
            "\t\tproperty: '${propertyName}',\n" +
            "\t\tserializedData: function() { return myForm.serialize() }\n"

As the variable name of the form is always myForm you may serialize the entire form and then use the values from the params.serializedData in the remote validation controller. This is somewhat of an un-elegant solution, but it gets the values up to the validation controller and we use them as necessary to bind to the Validateable class currently under remote validation.

from jquery-validation-ui.

jonroler avatar jonroler commented on April 27, 2024

I have now pushed a fix for this problem (pull request #26) which is nearly identical to what Pascal proposed.

from jquery-validation-ui.

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.