{ "id": "101460", "key": "TIMOB-11025", "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": "14127", "description": "Sprint 2012-19 API", "name": "Sprint 2012-19 API", "archived": true, "released": true, "releaseDate": "2012-09-24" } ], "resolution": { "id": "3", "description": "The problem is a duplicate of an existing issue.", "name": "Duplicate" }, "resolutiondate": "2012-09-21T14:41:03.000+0000", "created": "2012-09-18T19:57:21.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [], "versions": [ { "id": "14137", "description": "Release 2.1.3", "name": "Release 2.1.3", "archived": true, "released": true, "releaseDate": "2012-10-03" } ], "issuelinks": [ { "id": "21175", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "outwardIssue": { "id": "101534", "key": "TIMOB-10998", "fields": { "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", "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 } } } } ], "assignee": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-21T22:45:25.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": "If you set tableview style is grouped,\r\nyou can't change background color and background image.\r\n\r\nYou can see this bug on kitchen sink. (table_view_layout3.js, table_views.js)\r\n", "attachment": [ { "id": "31472", "filename": "iOS Simulator Screen shot 2012. 9. 19. 오전 11.55.50.png", "author": { "name": "yomybaby", "key": "yomybaby", "displayName": "Jong Eun Lee", "active": true, "timeZone": "Asia/Tokyo" }, "created": "2012-09-18T19:57:21.000+0000", "size": 92563, "mimeType": "image/png" }, { "id": "31473", "filename": "iOS Simulator Screen shot 2012. 9. 19. 오전 11.55.58.png", "author": { "name": "yomybaby", "key": "yomybaby", "displayName": "Jong Eun Lee", "active": true, "timeZone": "Asia/Tokyo" }, "created": "2012-09-18T19:57:21.000+0000", "size": 51256, "mimeType": "image/png" }, { "id": "31474", "filename": "iOS Simulator Screen shot 2012. 9. 19. 오전 11.56.23.png", "author": { "name": "yomybaby", "key": "yomybaby", "displayName": "Jong Eun Lee", "active": true, "timeZone": "Asia/Tokyo" }, "created": "2012-09-18T19:57:21.000+0000", "size": 37889, "mimeType": "image/png" }, { "id": "31475", "filename": "iOS Simulator Screen shot 2012. 9. 19. 오전 11.56.27.png", "author": { "name": "yomybaby", "key": "yomybaby", "displayName": "Jong Eun Lee", "active": true, "timeZone": "Asia/Tokyo" }, "created": "2012-09-18T19:57:21.000+0000", "size": 41902, "mimeType": "image/png" } ], "flagged": false, "summary": "iOS 6: Grouped style tabelview background doesn't work (kitchen sink)", "creator": { "name": "yomybaby", "key": "yomybaby", "displayName": "Jong Eun Lee", "active": true, "timeZone": "Asia/Tokyo" }, "subtasks": [], "reporter": { "name": "yomybaby", "key": "yomybaby", "displayName": "Jong Eun Lee", "active": true, "timeZone": "Asia/Tokyo" }, "environment": "ios6 gm\r\nxcode 4.5\r\nTi mobile sdk 2.1.3 gm (2.1.3.v20120915120319)", "comment": { "comments": [ { "id": "219649", "author": { "name": "yomybaby", "key": "yomybaby", "displayName": "Jong Eun Lee", "active": true, "timeZone": "Asia/Tokyo" }, "body": "Left two images are ios6's.\r\nRight two images are ios5's.", "updateAuthor": { "name": "yomybaby", "key": "yomybaby", "displayName": "Jong Eun Lee", "active": true, "timeZone": "Asia/Tokyo" }, "created": "2012-09-18T19:59:31.000+0000", "updated": "2012-09-18T19:59:31.000+0000" }, { "id": "219652", "author": { "name": "yomybaby", "key": "yomybaby", "displayName": "Jong Eun Lee", "active": true, "timeZone": "Asia/Tokyo" }, "body": "I add a 'self.tableView.backgroundView = nil;' to TiUITableView.m .\r\nIt works.\r\nBut I'm not sure there isn't side effect. :)\r\n{code} \r\n-(void)setBackgroundImage_:(id)arg\r\n{\r\n\tNSURL *url = [TiUtils toURL:arg proxy:(TiProxy*)self.proxy];\r\n\tUIImage *image = [[ImageLoader sharedLoader] loadImmediateImage:url];\r\n\t[[self tableView] setBackgroundColor:[UIColor colorWithPatternImage:image]];\r\n self.tableView.backgroundView = nil;\r\n \r\n self.backgroundImage = arg;\r\n}\r\n{code} ", "updateAuthor": { "name": "yomybaby", "key": "yomybaby", "displayName": "Jong Eun Lee", "active": true, "timeZone": "Asia/Tokyo" }, "created": "2012-09-18T20:07:22.000+0000", "updated": "2012-09-18T20:08:17.000+0000" }, { "id": "219975", "author": { "name": "dsefton", "key": "dsefton", "displayName": "Daniel Sefton", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Tested and confirmed on iOS 6.0, TiSDK 2.1.3.v20120915120319 - background image/colour is not set.\r\n\r\nBackground image/colour is set as expected on iOS 5.1 with all TiSDKs.", "updateAuthor": { "name": "dsefton", "key": "dsefton", "displayName": "Daniel Sefton", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-20T13:35:28.000+0000", "updated": "2012-09-20T13:35:28.000+0000" }, { "id": "220197", "author": { "name": "srahim", "key": "srahim", "displayName": "Sabil Rahim", "active": true, "timeZone": "America/Los_Angeles" }, "body": "This bug was fixed as part of another fix. \r\n\r\nVerified that this cannot be reproduced with the last build from 2_1_X branch (1c7ff05bb3235929620d1d027b77fa136901a1fc) and with latest build of kitchensink on Xcode 4.5(GA) running iOS 6.0 Simulator\r\n\r\nMarking ticket as duplicate of timob-10998", "updateAuthor": { "name": "srahim", "key": "srahim", "displayName": "Sabil Rahim", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-21T14:38:58.000+0000", "updated": "2012-09-21T14:38:58.000+0000" }, { "id": "414617", "author": { "name": "lmorris", "key": "lmorris", "displayName": "Lee Morris", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Closing ticket as duplicate with reference to the above comments.", "updateAuthor": { "name": "lmorris", "key": "lmorris", "displayName": "Lee Morris", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2017-03-21T22:45:25.000+0000", "updated": "2017-03-21T22:45:25.000+0000" } ], "maxResults": 5, "total": 5, "startAt": 0 } } }