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
As a developer, when I trigger schemaFormValidate, the last form field does not render errors, if i run another digest cycle , its ok
Expected behaviour
I expected schemaFormValidate works as expected
Actual behaviour
It actually need another digest cycle.
Gist/Plunker/Demo
I cant reproduce in plunker but, i reproduce on your demo page http://schemaform.io/examples/bootstrap-example.html
open console
$('[name="ngform"]').scope().$broadcast('schemaFormValidate')
//the last field does not render error
//Force a digest cycle
$('[name="ngform"]').scope().$digest()
//and the last field error appear