Maxime Séguin
Maxime Séguin
Any news on this subject? Shouldn't isValid (on validatedObservable for example) be async and only resolved when all properties are done validating? Thanks!
@crissdev Thanks. I will try it and see if it resolves the issues I have. I'll let you know the results.
@crissdev I ended creating an extender (which I think could be integrated in knockout-validation). Here's what I've came up with: ``` javascript function(validatedObservable) { validatedObservable.isValidating = ko.computed(function() { return !!validatedObservable.errors.find(function(obsv)...
@crissdev Perfect! Thank you for your support!
@ErikReider Any updates on this issue?