{ "id": "101534", "key": "TIMOB-10998", "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": "14137", "description": "Release 2.1.3", "name": "Release 2.1.3", "archived": true, "released": true, "releaseDate": "2012-10-03" }, { "id": "13505", "description": "Release 3.0.0", "name": "Release 3.0.0", "archived": true, "released": true, "releaseDate": "2012-12-14" }, { "id": "14127", "description": "Sprint 2012-19 API", "name": "Sprint 2012-19 API", "archived": true, "released": true, "releaseDate": "2012-09-24" }, { "id": "14271", "description": "2012 Sprint 19", "name": "2012 Sprint 19", "archived": true, "released": true, "releaseDate": "2012-09-24" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2012-09-20T14:32:19.000+0000", "created": "2012-09-19T15:04:45.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "api", "qe-ios090112", "qe-ios6", "qe-nfc", "qe-testadded" ], "versions": [ { "id": "14137", "description": "Release 2.1.3", "name": "Release 2.1.3", "archived": true, "released": true, "releaseDate": "2012-10-03" } ], "issuelinks": [ { "id": "21787", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "inwardIssue": { "id": "102785", "key": "TIMOB-11286", "fields": { "summary": "iOS: TableView property Titanium.UI.iPhone.TableViewStyle.GROUPED has a different background. (Regression Issue)", "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": "21175", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "inwardIssue": { "id": "101460", "key": "TIMOB-11025", "fields": { "summary": "iOS 6: Grouped style tabelview background doesn't work (kitchen sink)", "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": "23628", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "106468", "key": "TIMOB-12085", "fields": { "summary": "iOS: Background Image not showing for a grouped TableViewStyle", "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": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2014-06-19T12:44:40.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": "Description: A blog comment was made regarding this issue and we investigated. Setting the background color of a grouped tableview to \"transparent\" did not work, nor did any other color. The pin-striped default was used instead.\r\n\r\nThis does not occur on iOS 5 devices even when the iOS 6.0 SDK and Xcode 4.5 are used for the build.\r\n\r\nThis is not a regression because iOS 6 was not available previously.\r\n\r\nHere is the repro code:\r\n{code}\r\nvar win = Ti.UI.createWindow();\r\n\r\nvar data=[];\r\nvar passwordRow = Ti.UI.createTableViewRow({\r\n height:50,\r\n borderColor: '#000000',\r\n borderWidth: 2,\r\n });\r\n \r\nvar password = Titanium.UI.createTextField({\r\n color:'#000000',\r\n backgroundColor:'white',\r\n height:35,\r\n top:10,\r\n left:10,\r\n width:250,\r\n hintText:'New Password',\r\n autocorrect: false,\r\n passwordMask: true,\r\n borderStyle:Titanium.UI.INPUT_BORDERSTYLE_NONE\r\n }); \r\n \r\npasswordRow.add(password);\r\n\r\nvar passwordRow2 = Ti.UI.createTableViewRow({\r\n height:50,\r\n borderColor: '#000000',\r\n borderWidth: 2,\r\n });\r\n \r\n \r\nvar password2 = Titanium.UI.createTextField({\r\n color:'#000000',\r\n backgroundColor:'blue',\r\n height:35,\r\n top:10,\r\n left:10,\r\n width:250,\r\n hintText:'New Password',\r\n autocorrect: false,\r\n passwordMask: true,\r\n borderStyle:Titanium.UI.INPUT_BORDERSTYLE_NONE\r\n }); \r\n \r\npasswordRow2.add(password2);\r\n \r\ndata.push(passwordRow);\r\ndata.push(passwordRow2);\r\n\r\n var newpasswordbox = Ti.UI.createTableView({\r\n backgroundColor:'transparent',\r\n rowBackgroundColor:'#666',\r\n data:data,\r\n style: Titanium.UI.iPhone.TableViewStyle.GROUPED,\r\n width: 300,\r\n top: 20,\r\n left: 10,\r\n height: 130,\r\n scrollable: false\r\n});\r\n\r\nwin.add(newpasswordbox);\r\n\r\nwin.open();\r\n{code}\r\n\r\nSteps to reproduce:\r\n1) Use the above code in a new Studio project\r\n2) Build for device or simulator iOS 6.0\r\n3) Observe the pin-striped tableview background\r\n\r\nResult:\r\nThe tableview background color setting is ignored and is pin-striped instead\r\n\r\nExpected:\r\nThe tableview background color is transparent", "attachment": [ { "id": "31516", "filename": "ios5.jpg", "author": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-19T15:04:45.000+0000", "size": 50695, "mimeType": "image/jpeg" }, { "id": "31517", "filename": "ios6.jpg", "author": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-19T15:04:45.000+0000", "size": 48842, "mimeType": "image/jpeg" } ], "flagged": false, "summary": "iOS: iOS 6 only - tableView - On a tableview using iOS TableViewStyle.GROUPED, you can't set the tableview background to a color or an image", "creator": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "Mac OS 10.8.1\r\nTitanium Studio, build: 2.1.2.201208301612\r\nSDK:2.1.3.v20120915120319\r\niPod 4th gen (iOS 6)", "comment": { "comments": [ { "id": "219861", "author": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Additional note: This is easily reproducible in the simulator.", "updateAuthor": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-19T16:26:13.000+0000", "updated": "2012-09-19T16:26:13.000+0000" }, { "id": "219866", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Pull pending https://github.com/appcelerator/titanium_mobile/pull/3002", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2012-09-19T16:39:07.000+0000", "updated": "2012-09-19T16:39:07.000+0000" }, { "id": "219869", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Also note PR: https://github.com/appcelerator/titanium_mobile/pull/3000", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-19T16:42:51.000+0000", "updated": "2012-09-19T16:42:51.000+0000" }, { "id": "220019", "author": { "name": "srahim", "key": "srahim", "displayName": "Sabil Rahim", "active": true, "timeZone": "America/Los_Angeles" }, "body": "2_1_X PR MERGED IN https://github.com/appcelerator/titanium_mobile/pull/3011", "updateAuthor": { "name": "srahim", "key": "srahim", "displayName": "Sabil Rahim", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-20T15:42:11.000+0000", "updated": "2012-09-20T15:42:11.000+0000" }, { "id": "220236", "author": { "name": "tsmolich", "key": "tsmolich", "displayName": "Tamila Smolich", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Tested and verified on: \r\nOS: Mac OS X Lion 10.7.4 \r\nTitanium Studio, build: 2.1.2.201208301612\r\nTitanium SDK, build: 2.1.3.v20120921141611\r\nDevice: iPhone 4S (6.0.GM)\r\n\r\nThe tableview background color is transparent.", "updateAuthor": { "name": "tsmolich", "key": "tsmolich", "displayName": "Tamila Smolich", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-21T16:40:31.000+0000", "updated": "2012-09-21T16:40:31.000+0000" }, { "id": "220239", "author": { "name": "lokeshchdhry", "key": "lokeshchdhry", "displayName": "Lokesh Choudhary", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Verified the fix on:\r\nMAC OSX 10.8.1\r\nTitanium studio : 2.1.2.201208301612\r\nSDK version : 3.0.0.v20120921144915\r\nxcode 4.5\r\nbuilt with iOS6 SDK on Ipad 3 running iOS6 & on Iphone simulator.", "updateAuthor": { "name": "lokeshchdhry", "key": "lokeshchdhry", "displayName": "Lokesh Choudhary", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2012-09-21T16:45:30.000+0000", "updated": "2012-09-21T16:45:30.000+0000" }, { "id": "221457", "author": { "name": "jameswise@gmail.com", "key": "jameswise@gmail.com", "displayName": "James Wise", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Sorry, I can't verify this fix. It persists on iOS6 simulator and iPhone 5:\r\nMAC OSX 10.8.2\r\nTitanium Studio: 2.1.2.201208301612\r\nSDK version: 2.1.3.20120928124610\r\nXCode 4.5\r\nBuilt with iOS6 on simulator and iPhone 5", "updateAuthor": { "name": "jameswise@gmail.com", "key": "jameswise@gmail.com", "displayName": "James Wise", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-28T22:19:31.000+0000", "updated": "2012-09-28T22:19:31.000+0000" }, { "id": "221462", "author": { "name": "jameswise@gmail.com", "key": "jameswise@gmail.com", "displayName": "James Wise", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Apologies, thought I'd fully cleaned but was still building with the 15th Sept build...\r\n\r\nCan verify this fix on 2.1.3.20120928124610 with the information above. Thanks guys.", "updateAuthor": { "name": "jameswise@gmail.com", "key": "jameswise@gmail.com", "displayName": "James Wise", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-28T22:35:26.000+0000", "updated": "2012-09-28T22:35:26.000+0000" }, { "id": "221497", "author": { "name": "martinvm", "key": "martinvm", "displayName": "Martin van Mierloo", "active": true, "timeZone": "Europe/Berlin" }, "body": "Please consider the input here: http://developer.appcelerator.com/question/142390/ios-sdk-6-and-grouped-tableview-transparancybackground-color-failure#comment-142269\r\nThe default striped background is still not working on the ipad.", "updateAuthor": { "name": "martinvm", "key": "martinvm", "displayName": "Martin van Mierloo", "active": true, "timeZone": "Europe/Berlin" }, "created": "2012-09-29T05:35:35.000+0000", "updated": "2012-09-29T05:35:35.000+0000" } ], "maxResults": 9, "total": 9, "startAt": 0 } } }