Hello,
I have coded the textEntery BOx has shown in below code , i cannot enter the text inside the textEntry Box and cursor in not seen, how to implement.
CODE
var textEntry = new KONtx.control.TextEntryButton({
id: 'text-entry-button',
label: 'Enter Search Text',
defaultValue: 'defaul value',
Cursor: '_',
styles: {
vOffset: KONtx.utility.scale(35)
},
events: {
onSelect: function(event) {
log("value set!");
log(this.owner.controls.mytext.text);
}
}
}).appendTo(this);
Regards,
Sushma.S