You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While components can have their own validate functions, said methods have no way of getting the value passed to isValidValue.
constMyOwnInput=React.createClass({mixins: [Formsy.Mixin],validate(){return!!this.getValue();},test(){console.log(this.isValidValue(0));// falseconsole.log(this.isValidValue(1));// false - should be true}// ...});
While components can have their own
validate
functions, said methods have no way of getting the value passed toisValidValue
.JSFiddle
The text was updated successfully, but these errors were encountered: