Have any "api" to check if have errors in the form or in the component, without show the errors on screen? like this:
this.refForm.isValid() === true
this.refForm.getComponent(path).isValid() === true
thanks
ah, with pureValidate() is possible:
this.refForm.pureValidate().isValid() === true
this.refForm.getComponent(path).pureValidate().isValid() === true
Most helpful comment
ah, with
pureValidate()is possible:this.refForm.pureValidate().isValid() === truethis.refForm.getComponent(path).pureValidate().isValid() === true