I am implementing a feature where I can review historical inputs while typing. When I use the up and down keys to review the historical inputs, the input field on the web page(html element) does not synchronize (unless I click again or press the enter key to activate the input field).
This leads to a common issue: when focusing on the input field, setting the text using inputfield.text = "xxxx" will be overwritten by the text in the html element if edited again
I am implementing a feature where I can review historical inputs while typing. When I use the up and down keys to review the historical inputs, the input field on the web page(html element) does not synchronize (unless I click again or press the enter key to activate the input field).
This leads to a common issue: when focusing on the input field, setting the text using inputfield.text = "xxxx" will be overwritten by the text in the html element if edited again