Search code examples
reactjsreact-final-form

Select text on focus when using react-final-form


I need to be able to handle onFocus events so I can select the text when using react-final-form. I tried searching through the docs, but wasn't able to find any resources on that topic. Any ideas?


Solution

  • That's not a feature that react-final-form provides. You'll have to handle the onFocus event yourself to do that.

    It's not that hard, though.

    Edit 🏁 React Final Form - Simple Example