[TIMOB-25066] iOS: disable emoji keyboard
| GitHub Issue | n/a |
| Type | New Feature |
| Priority | High |
| Status | Closed |
| Resolution | Invalid |
| Resolution Date | 2017-10-31T02:39:58.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | iOS |
| Labels | n/a |
| Reporter | Victor Vazquez Montero |
| Assignee | Vijay Singh |
| Created | 2017-08-04T21:17:00.000+0000 |
| Updated | 2018-08-06T17:37:01.000+0000 |
Description
Description:
Customer would like an option to disable the emoji keyboard for certain inputs. Since xcode 8.2.1 you are able to select keyboard type "numbers and punctuation" to use a keyboard without emojis
Feature request:
enable a way to select other keyboard types in iOS. Please see attached screenshot.
Additional information:
Customer has already implemented disallow custom keyboards.
Attachments
[~vvazquezmontero] Keyboard types are already supported in titanium as you can see in document [here](http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.TextArea-property-keyboardType) . Please see the following example for usage of keyboard type -
I think this is what customer is looking for.var win = Ti.UI.createWindow({ backgroundColor: '#fff' }); var textArea = Ti.UI.createTextArea({ top: 150, width:200, value: 'Keyboard Type test', borderColor: 'red', backgroundColor: 'gray', keyboardType: Titanium.UI.KEYBOARD_TYPE_NUMBERS_PUNCTUATION }); win.add(textArea); win.open();[~vijaysingh] Thank you for that Vijay I will share this with the customer
[~vijaysingh] We can close this ticket
As mentioned in previous comments, this is not a bug. So resolving it.
Closing as invalid. If incorrect, please reopen.