I'm trying to develop a Smart TV application using TOAST (so for Samsung Tizen and LG webos). When trying to use the virtual keyboad (IME), the IME is not showing up in the Tizen emulator but does appear in the webOS emulator.
Even when using the sample app provided Samsung in their TOAST plugin (IME sample), the keyboard won't appear.
My code:
<div class="user-info-input" > <label for="input1">E-mail</label> <input type="email" id="input1" class="form-input" focusable> </div> <script> imeEle = document.getElementById('input1'); imeEle.addEventListener('submit', function (e) { console.log("The DONE button of IME is pushed"); }); imeEle.addEventListener('cancel', function (e) { console.log("The CANCEL button of IME is pushed"); }); imeEle.addEventListener('blur', function (e) { console.log("The INPUT element loses focus"); if(imeEle.getAttribute('data-ime-show') == 'false') { console.log("The IME is closed"); } }); imeEle.focus(); </script>
I've tried different devices to run the emulator on, but so far no succes..