In a nutchell my question is:
How can I show a soft-keyboard when accessing a LibGDX HTML (GWT) app via a mobile phone?
Details
In LibGDX, to bring up the soft-keyboard we can call this method:
Gdx.input.setOnscreenKeyboardVisible(true);
However, according to the documentation (https://github.com/libgdx/libgdx/wiki/On-screen-keyboard):
"On-screen keyboard functionality is only available the Android and iOS platforms"
i.e.: not for HTML (GWT)
Problem: If you access your HTML (GWT) application through a mobile or tablet, you have no way to show the soft-keyboard and therefore no way of typing anything in your texfield.
Given that most people are now accessing web sites using mobiles and/or tablets I assume many would haved face the same issue.