I cannot select all the text when element focus, because I need event passed to onfocus callback. ``` this._handleFocus = (text, e) => { console.log('Focused with text: ' + text); console.log('handle focus', e) e.target.select(); } ``` please help me.