This keyboard is so good but it lacks customization. Hope it updates and add customization to keyboard like adjust it’s size or scale, add or remove characters, only show numerical keyboard with arithmetic signs and more. I’m waiting for this kind of update, thanks!
]]>Hi.
How to add another keyboard layout? For example: Ukraine or Russian language?
Hello!
I needed an on-screen keyboard so I dived into the source and modified it to suit my needs. Are you interested in improving and maintaining this plugin?
Your plugin has a bug when using the delete key. If you type 5 letters using the keyboard, and then hit delete 6 times, it will “store” the last delete and move the cursor to the left when you start typing again, so if I type “sport” followed by 6 delete presses, then type “sport” again, it actually shows “ports”. The more delete keys you press, the more it affects the subsequent output.
To fix it, you just need to check that the length of the field is not 0:
del: function() {
var a = jsKeyboard.currentElement.val();
if ( a.length > 0 ) {
var pos = jsKeyboard.currentElementCursorPosition;
var output = [a.slice(0, pos – 1), a.slice(pos)].join(”);
jsKeyboard.currentElement.val(output);
jsKeyboard.currentElementCursorPosition–; //-1 cursor
jsKeyboard.updateCursor();
}
},
Hi,
I have tried to use your plugin however when I activate it, it hide the scroll up and down bar on my browser.
please advise,
thanks,
David
]]>How do I test this plugin to see how it works? It is installed, and shortcode on the page, but nothing seems to be happening ??
]]>