-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
need massCheck function capability #96
Comments
To be honest I don't quite remember what exactly it did, but I imagine it did something like this: https://github.com/casperin/nod#manually-checking-validity myNod.areAll('valid'); Will that work for you? |
thank you for the function, but not exactly same with massCheck. by the way thank you for the feature. |
Aaaah right.. it would basically trigger a change on every element, forcing nod to run its checks. I guess there is no equivalent to that, sorry. |
never mind, my team already get the work around by modify the checkers and add equivalent capability. thanks. |
Glad to hear that :) And thanks for using my little library |
yes.., your library save me a lot of time to manage validation. function massCheck () {
checkers.forEach(function(checker) {
checker.performCheck();
})
} then this feature available in the latest version, my be the next release you will add this capability. thanks... |
Hmm, yeah. I might do that. Why not. Different name though I think. |
https://github.com/casperin/nod#force-nod-to-perform-a-check :) I pretty much just copied your implementation. Just added a bit of extra functionaility: |
That's great, thank you for the implementation and fast response. |
is there any function like massCheck in new version like old version?
The text was updated successfully, but these errors were encountered: