02-21-2013 02:45 AM
I want to create my customized keyboard so I want to prevent popup keyboard every time the TextField focused>
any body have idea to help me??
02-21-2013 11:23 AM - edited 02-21-2013 11:24 AM
Adding a flag should do it, not sure if they work with TextField but an editable TextArea looks the same:
TextArea {
text: ""
input.flags: TextInputFlag.VirtualKeyboardOff
editable: true
}