Another keyboard questions: Is it possible to input letters using pinentry keyboard layout and is it possible to enter digits on the remote control instead of navigating to required button on the on-screen keyboard or it will just change the channel?
Yes, it is possible to use the numeric on-screen keyboard using the "pinentry" keyboard layout.
CODE
new KONtx.control.TextEntryButton({
guid: 'myTextEntry',
events: {
onValueChanged: function () {
//
}
},
maxLength: 20,
keyboard: {
layout: 'pinentry'
}
}).appendTo(this);
or
CODE
new KONtx.control.Keyboard({
guid: 'myKeycaps',
maxLength: 20,
layout: 'pinentry',
events: {
//
},
styles: {
//
}
}).appendTo(this);
It is not currently possible to bind the keyboard to the numeric physical keys.
Does that help?
Jim