{ "id": "83546", "key": "TIMOB-6551", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "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": "12090", "description": "", "name": "Sprint 2011-50", "archived": true, "released": true, "releaseDate": "2011-12-19" }, { "id": "12571", "description": "CI for 1_7_X", "name": "Release 1.7.6", "archived": true, "released": false }, { "id": "12593", "name": "Release 2.0.0", "archived": false, "released": true, "releaseDate": "2012-03-30" }, { "id": "12677", "description": "Release 1.8 Service Pack 1", "name": "Release 1.8.1", "archived": true, "released": true, "releaseDate": "2012-01-31" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2012-01-23T16:33:38.000+0000", "created": "2011-12-09T16:18:34.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "module_orientation", "qe-testadded" ], "versions": [ { "id": "12570", "name": "Release 1.7.5", "archived": true, "released": true, "releaseDate": "2011-11-02" }, { "id": "12580", "description": "Dual Runtime 1.8.0", "name": "Release 1.8.0.1", "archived": true, "released": true, "releaseDate": "2011-12-22" } ], "issuelinks": [ { "id": "14535", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "outwardIssue": { "id": "80933", "key": "TIMOB-5417", "fields": { "summary": "iOS: Rotating device when keyboard has toolbar invoked causes the toolbar to be covered by the keyboard", "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" } }, "priority": { "name": "Low", "id": "4" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "14129", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "63074", "key": "TIMOB-2442", "fields": { "summary": "Keyboard toolbar hides on landscape orientation", "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" } }, "priority": { "name": "Medium", "id": "3" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "15506", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "85760", "key": "TIMOB-7486", "fields": { "summary": "iOS - on modal window orientation misplaces children", "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" } }, "priority": { "name": "High", "id": "2" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "15512", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "87281", "key": "TIMOB-7863", "fields": { "summary": "iOS: Keyboard displayed over modal causes render issues on rotate", "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" } }, "priority": { "name": "Low", "id": "4" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "blainhamon", "key": "blainhamon", "displayName": "Blain Hamon", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2014-06-19T12:44:16.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": "h4. Expected Behavior\r\nShow the full toolbar even when changing the device orientation\r\n\r\nh4. Actual Behavior\r\nThe toolbar is partially hidden on landscape orientation. Steps to reproduce the bug:\r\n- click on the inputText\r\n- Turn the device to landscape\r\nAt this point the 50% of the toolbar is hidden behind the keyboard\r\n\r\nh4. Test Case\r\n{code:title=app.js}\r\nTitanium.UI.setBackgroundColor('#000');\r\n\r\n// create tab group\r\nvar tabGroup = Titanium.UI.createTabGroup();\r\n//\r\n// create base UI tab and root window\r\n//\r\nvar win1 = Titanium.UI.createWindow({\r\n\ttitle:'Tab 1',\r\n\tbackgroundColor:'#fff',\r\n\tnavBarHidden:false\r\n});\r\n\r\n\r\nwin1.orientationModes=[\r\n Titanium.UI.PORTRAIT,\r\n Titanium.UI.LANDSCAPE_LEFT,\r\n Titanium.UI.LANDSCAPE_RIGHT];\r\nvar flexSpace = Titanium.UI.createButton({\r\n\t\tsystemButton:Titanium.UI.iPhone.SystemButton.FLEXIBLE_SPACE\r\n\t});\r\n\tvar done=Titanium.UI.createButton({\r\n \tsystemButton:Titanium.UI.iPhone.SystemButton.DONE,\r\n \tbackgroundColor:'#44648E',\r\n\t\tbackgroundImage:'none'\r\n\t});\r\n\t\tvar textField = Titanium.UI.createTextField({\r\n\t\t\t\tcolor:'#385487',\r\n\t\t\t\tright:'3.1%',\r\n\t\t\t\tleft:'3.1%',\r\n\t\t\t\ttop:10,\r\n\t\t\t\tborderStyle:Titanium.UI.INPUT_BORDERSTYLE_NONE,\r\n\t\t\t\tborder:0,\r\n\t\t\t\theight:44,\r\n\t\t\t\tborderColor: '#000000',\r\n\t\t\t\tbackgroundColor: 'transparent',\r\n\t\t\t\tfont:{fontSize:17,fontFamily:'Helvetica Neue'},\r\n\t\t\t\treturnKeyType:Titanium.UI.RETURNKEY_DONE,\r\n\t\t\t\tkeyboardType:Ti.UI.KEYBOARD_NUMBER_PAD,\r\n\t\t\t\tkeyboardToolbar:[flexSpace,flexSpace,done],\r\n\t\t\t});\r\n\r\ndone.addEventListener('click',function(e){\r\n\t\ttextField.blur()\r\n});\r\n\r\nwin1.add(textField);\r\n\r\n\r\n\r\n\r\nvar tab1 = Titanium.UI.createTab({\r\n\ticon:'KS_nav_views.png',\r\n\ttitle:'Tab 1',\r\n\twindow:win1\r\n});\r\n\r\n// create controls tab and root window\r\n//\r\nvar win2 = Titanium.UI.createWindow({\r\n\ttitle:'Tab 2',\r\n\tbackgroundColor:'blue',\r\n\tnavBarHidden:false\r\n});\r\n\r\nvar tab2 = Titanium.UI.createTab({\r\n\ticon:'KS_nav_ui.png',\r\n\ttitle:'Tab 2',\r\n\twindow:win2\r\n});\r\n\r\n\r\ntabGroup.addTab(tab1);\r\ntabGroup.addTab(tab2);\r\n\r\n// open tab group\r\ntabGroup.open();\r\n{code}", "attachment": [ { "id": "24548", "filename": "Screen Shot 2011-12-09 at 3.54.27 PM.png", "author": { "name": "rtlechuga", "key": "rtlechuga", "displayName": "Radamantis Torres-Lechuga", "active": false, "timeZone": "Asia/Dubai" }, "created": "2011-12-09T16:18:34.000+0000", "size": 59305, "mimeType": "image/png" }, { "id": "24547", "filename": "Screen Shot 2011-12-09 at 3.54.35 PM.png", "author": { "name": "rtlechuga", "key": "rtlechuga", "displayName": "Radamantis Torres-Lechuga", "active": false, "timeZone": "Asia/Dubai" }, "created": "2011-12-09T16:18:34.000+0000", "size": 55194, "mimeType": "image/png" } ], "flagged": false, "summary": "iOS: keytoolbar hiding behind the keypad on changing orientation ", "creator": { "name": "rtlechuga", "key": "rtlechuga", "displayName": "Radamantis Torres-Lechuga", "active": false, "timeZone": "Asia/Dubai" }, "subtasks": [], "reporter": { "name": "rtlechuga", "key": "rtlechuga", "displayName": "Radamantis Torres-Lechuga", "active": false, "timeZone": "Asia/Dubai" }, "environment": "Titanium SDK version: 1.7.5 / 1.8.0.1\r\nPlatform OS: iOS\r\nPlatform OS Version: 5.0.1\r\nDevice Details: iPhone Simulator, iPod Touch Device 4.2.1\r\nHost Operating System: OSX 10.7.2\r\nTitanium Studio Build 1.0.6.201110251616", "comment": { "comments": [ { "id": "175630", "author": { "name": "rtlechuga", "key": "rtlechuga", "displayName": "Radamantis Torres-Lechuga", "active": false, "timeZone": "Asia/Dubai" }, "body": "Very similar to this issue", "updateAuthor": { "name": "rtlechuga", "key": "rtlechuga", "displayName": "Radamantis Torres-Lechuga", "active": false, "timeZone": "Asia/Dubai" }, "created": "2011-12-09T16:20:55.000+0000", "updated": "2011-12-09T16:20:55.000+0000" }, { "id": "179135", "author": { "name": "nhuynh", "key": "nhuynh", "displayName": "Natalie Huynh", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Tested with 1.9.0.v20120112104633 with iPod 4.3.3", "updateAuthor": { "name": "nhuynh", "key": "nhuynh", "displayName": "Natalie Huynh", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-01-12T16:22:28.000+0000", "updated": "2012-01-12T16:22:28.000+0000" } ], "maxResults": 4, "total": 4, "startAt": 0 } } }