I have an App that uses a barcode scanner and interacts with a website using a webview control. The scanner does not use a keyboard wedge to return data - it uses a callback function to pass the scanned barcode data into the website (built using React and Telerik controls).
In order to provide a target for the barcode data, the user must click the editable control (to place the focus on the control) so that the scanned barcode text is then placed in that control. For a text box, this is a trivial matter, but for a dropdown list this seems to be more complex. When a user selects the dropdown list, the list opens up complete with the search box. Is there a programmatic way of populating that search box with the text obtained from the barcode scan? I have even tried directly manipulating the DOM to try to set the inner text property, but without success.
Thanks in advance
Mike