フォーム送信後に特定のフォーム フィールドに注目するにはどうすればよいですか?
すでに試したこと:
1.
dispatch(focus('fieldRefName'))
2.
componentWillReceiveProps = (nextProps) => {
if (nextProps.submitting) {
this.refs.fieldRefname.focus()
}
}
送信後にフォームもきれいにしたい。
redux-form バージョン: 3.0.12