Hello,
I have a problem , how Align the Keyboard of the text Entry button used on full screen mode.
CODE
var SearchView = new KONtx.Class({
ClassName: 'HomePanelSB',
Extends: KONtx.system.FullscreenView,
this.controls.textEntry = new KONtx.control.TextEntryButton({
id: 'text-entry-button',
label: 'Enter Search Text',
defaultValue: 'defaul value',
styles: {
hAlign:'center',
vOffset: KONtx.utility.scale(35)
},
keyboard: {
autoAdjust: true
},
events: {
onSelect: function(event) {
log("value set!");
},
onSubmit: function(event) {
//log("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
//log("?????????????????????????????"+event.payload.value);
//handleSearchReq(event.payload.value);
}
}
}).appendTo(this);
});
Regards,
Sushma.S