Forum Discussion
Former Member
4 years agoOnChange not firing for In-App browser
I was able to reproduce this issue on my Android device but my users have reported it on iPad and iPhone too.
I have a created a page that is identical to my Production login page except it displa...
Former Member
4 years agoI was able to create a work around on my site by changing my page to use Uncontrolled components (as React calls them) instead of Controlled components (as React calls them). Basically, instead of setting the input component's value and onChange properties I set the ref property to a React ref object using either React.CreateRef() or useRef().