Reputation: 411
I'm building an application with Electron running on a Raspberry Pi. I want an on screen keyboard to pop up automatically whenever a textbox is selected. How can I accomplish this? Either a Linux or a JavaScript solution would work.
Upvotes: 0
Views: 2467
Reputation: 671
have you tried something like:
<input type="text" onclick="require('child_process').exec('matchbox-keyboard');" />
Upvotes: 1