{ "id": "152127", "key": "TIMOB-19733", "fields": { "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "16997", "name": "Release 5.2.0", "archived": false, "released": true, "releaseDate": "2016-02-23" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2015-10-21T01:26:47.000+0000", "created": "2015-10-16T19:47:07.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [], "versions": [], "issuelinks": [], "assignee": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "updated": "2015-11-23T17:27:55.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10206", "name": "iOS", "description": "iOS Platform" } ], "description": "iOS9 offers a new return key to show a \"Continue\" button. We should support it and provide a fallback for older devices. Also, we should support the two missing keyboards for twitter and websearch.\r\n\r\n*Demo*:\r\n{code}\r\nvar win = Ti.UI.createWindow({\r\n\tbackgroundColor : '#e0e0e0',\r\n\tlayout: \"vertical\"\r\n});\r\n\r\nvar label1 = Ti.UI.createLabel({\r\n\ttop: 40,\r\n\twidth: 300,\r\n\ttext: \"Use a keyboard optimized for twitter text entry, with easy access to the @ and # characters.\"\r\n});\r\n\r\nvar field1 = Ti.UI.createTextField({\r\n\tbackgroundColor: \"#fff\",\r\n\ttop: 10,\r\n\twidth: 300,\r\n\theight: 40,\r\n\thintText: \"Ti.UI.KEYBOARD_TWITTER\",\r\n keyboardType: Ti.UI.KEYBOARD_TWITTER\r\n});\r\n\r\nvar label2 = Ti.UI.createLabel({\r\n\ttop: 40,\r\n\twidth: 300,\r\n\ttext: \"Use a keyboard optimized for web search terms and URL entry. This type features the space and “.” characters prominently.\"\r\n});\r\n\r\nvar field2 = Ti.UI.createTextField({\r\n\tbackgroundColor: \"#fff\",\r\n\ttop: 10,\r\n\twidth: 300,\r\n\theight: 40,\r\n\thintText: \"Ti.UI.KEYBOARD_WEBSEARCH\",\r\n keyboardType: Ti.UI.KEYBOARD_WEBSEARCH\r\n});\r\n\r\nvar field3 = Ti.UI.createTextField({\r\n\tbackgroundColor: \"#fff\",\r\n\ttop: 40,\r\n\twidth: 300,\r\n\theight: 40,\r\n\thintText: \"Ti.UI.RETURNKEY_CONTINUE\",\r\n\treturnKeyType: Ti.UI.RETURNKEY_CONTINUE /* Will fallback to Ti.UI.RETURNKEY_DEFAULT on older devices */\r\n});\r\n\r\nwin.add(label1);\r\nwin.add(field1);\r\nwin.add(label2);\r\nwin.add(field2);\r\nwin.add(field3);\r\n\r\nwin.open();\r\n{code}", "attachment": [], "flagged": false, "summary": "iOS9: Support \"Continue\" return key + new keyboard types", "creator": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "subtasks": [], "reporter": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "environment": null, "closedSprints": [ { "id": 503, "state": "closed", "name": "2015 Sprint 21 SDK", "startDate": "2015-10-10T00:32:18.011Z", "endDate": "2015-10-24T00:32:00.000Z", "completeDate": "2015-10-26T02:20:47.579Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "367027", "author": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "body": "PR: https://github.com/appcelerator/titanium_mobile/pull/7310", "updateAuthor": { "name": "hknoechel", "key": "hansknoechel", "displayName": "Hans Knöchel", "active": true, "timeZone": "Europe/Berlin" }, "created": "2015-10-16T20:06:48.000+0000", "updated": "2015-10-16T20:06:48.000+0000" }, { "id": "367356", "author": { "name": "cng", "key": "cng", "displayName": "Chee Kiat Ng", "active": false, "timeZone": "America/Los_Angeles" }, "body": "CR and FT passed. PR merged.", "updateAuthor": { "name": "cng", "key": "cng", "displayName": "Chee Kiat Ng", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2015-10-21T01:26:34.000+0000", "updated": "2015-10-21T01:26:34.000+0000" }, { "id": "371174", "author": { "name": "ewieber", "key": "ewieber", "displayName": "Eric Wieber", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Verified implemented using:\r\n\r\nMacOS 10.11.2 (15C47a)\r\nStudio 4.4.0.201511182122\r\nTi SDK 5.2.0.v20151119213638\r\nAppc NPM 4.2.2\r\nAppc CLI 5.1.0\r\nTi CLI 5.0.5\r\nAlloy 1.7.26\r\nArrow 1.3.22\r\nXcode 7.1 (7B91b)\r\nNode v0.12.7\r\nJava 1.7.0_80\r\nproduction\r\n\r\nUsing the provided code, the continue keyboard (as well as the twitter and web search keyboards) is displaying properly and defaults to the return key if used with unsupported SDKs/iOS versions.", "updateAuthor": { "name": "ewieber", "key": "ewieber", "displayName": "Eric Wieber", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2015-11-23T17:27:55.000+0000", "updated": "2015-11-23T17:27:55.000+0000" } ], "maxResults": 4, "total": 4, "startAt": 0 } } }