Quote Originally Posted by Wim Schimmel View Post
Hi,

In my mobile web app I want to scan a barcode to my scan page.
I hide the soft keyboard
Using a Honeywell scanner with Android 7 OS and tested with all major browsers
Dataflex 19.1 with material theme
There is one field on the page and it has the focus, the field has a light blue line below it
When scanning a barcode, nothing is entered in the field.
Only when I hold the input field briefly with my finger, there is a blue dot. Scan now, put the barcode in the field.
My Android phone does the same

How to fix this problem.

Wim
Not sure if I understand what is happening here, but try this in OnShow:
Code:
Set pbServerOnShow to True
Procedure OnShow
     Forward Send OnShow
     
      Webset psValue of oMyScanField to ""
      Send Focus of oMyScanField 
End_Procedure