I like to re-trigger validations after the form has mounted. Let\'s assume I like to run the validations each time I click a button named \'validate inputs\'.
How to
The sync validation is run on every render, so "triggering it" doesn't really have much meaning.
If you would like to use async validation, there is a this.props.asyncValidate() function that you can call to trigger it.
OR, if you prefer submit validation, you could just submit the form.