Hi,
I want to add focus event on NumericTextBox.Can you please suggest how to add focus event to NumericTextBox as i have to trigger some event based on focus.
please find the below implementation i need to achieve:-
<NumericTextBox type="text" name={name} className={cssClass} onChange={(ev) => this.onChange(ev) onFocus = {this.onFocusNumericGroupInput} />
onFocusNumericGroupInput = () => {
console.log("focus event fired")
}