{ "id": "136045", "key": "TIMOB-17608", "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": [], "resolution": null, "resolutiondate": null, "created": "2014-09-03T11:15:01.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [ "parity", "qe-3.4.0", "reprod" ], "versions": [ { "id": "15972", "description": "Release 3.4.0", "name": "Release 3.4.0", "archived": false, "released": true, "releaseDate": "2014-09-28" } ], "issuelinks": [], "assignee": null, "updated": "2018-02-28T20:04:12.000+0000", "status": { "description": "The issue is open and ready for the assignee to start work on it.", "name": "Open", "id": "1", "statusCategory": { "id": 2, "key": "new", "colorName": "blue-gray", "name": "To Do" } }, "components": [ { "id": "10206", "name": "iOS", "description": "iOS Platform" } ], "description": "Picker is not being visible if Picker Column added with height and width as “Ti.UI.SIZE”\r\nBut works fine on Android.\r\nNot a regression since not working on 3.3.0.GA also\r\n\r\n*Steps to reproduce:*\r\n1. Copy paste the code given below and run the app.\r\n2. Comment line no 17,18 and run the app again \r\n\r\n{color:green}*Expected Result:*{color}\r\n1.Picker must be visible. \r\n2.Picker must be visible.\r\n\r\n{color:red}*Actual Result:*{color}\r\n1. Picker is not visible.\r\n2. Picker is visible.\r\n\r\n{code}\r\nTi.UI.backgroundColor = 'white';\r\nvar win = Ti.UI.createWindow({\r\n layout: 'vertical'\r\n});\r\n \r\nvar picker = Ti.UI.createPicker({\r\n top:50,\r\n useSpinner: false,\r\n font: {fontSize: 40, fontFamily:'Helvetica', fontStyle:'italic'}, \r\n});\r\npicker.selectionIndicator = true;\r\n \r\nvar fruit = [ 'Bananas', 'Strawberries', 'Mangos', 'Grapes' ];\r\n \r\nvar column1 = Ti.UI.createPickerColumn({\r\n font: {fontSize: 40},\r\n height : Ti.UI.SIZE, // on commenting this and below line picker is visible.\r\n width : Ti.UI.SIZE\r\n});\r\n \r\nfor(var i=0, ilen=fruit.length; i