Is there anyway to disable the use of emoticons on native.newTextField?
in iOS you would set the keyboard to ascii only (see below) but that options seems to be missing from the inputType field only “default”,“number”,“decimal”,“phone”,“url” and “email” seem to be available.
typedef enum {
UIKeyboardTypeDefault,
UIKeyboardTypeASCIICapable, < UIKeyboardTypeNumbersAndPunctuation,
UIKeyboardTypeURL,
UIKeyboardTypeNumberPad,
UIKeyboardTypePhonePad,
UIKeyboardTypeNamePhonePad,
UIKeyboardTypeEmailAddress,
UIKeyboardTypeDecimalPad,
UIKeyboardTypeTwitter,
UIKeyboardTypeAlphabet = UIKeyboardTypeASCIICapable
} UIKeyboardType;
If it can’t be disabled what’s the best way to not let the user enter them?
It is causing havoc with my app in testing as my testers seem to want to enter them just to mess with me!! [import]uid: 8697 topic_id: 35150 reply_id: 335150[/import]