{ "id": "118656", "key": "TIMOB-14894", "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": "15646", "description": "2013 Sprint 18", "name": "2013 Sprint 18", "archived": true, "released": true, "releaseDate": "2013-09-06" }, { "id": "15690", "description": "2013 Sprint 18 API", "name": "2013 Sprint 18 API", "archived": true, "released": true, "releaseDate": "2013-09-06" } ], "resolution": { "id": "7", "description": "", "name": "Invalid" }, "resolutiondate": "2013-08-27T05:12:01.000+0000", "created": "2013-08-16T13:34:15.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "ios7", "ipass1" ], "versions": [ { "id": "15479", "description": "Release 3.1.2", "name": "Release 3.1.2", "archived": true, "released": true, "releaseDate": "2013-07-31" } ], "issuelinks": [], "assignee": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-28T20:26:35.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": "Window with a barColor does not apply that color:\r\n\r\n\"#window\": {\r\n\ttitle: \"Comments\",\r\n\tmodal: true,\r\n\tbarColor: \"#111\",\r\n\tbackgroundColor: \"#eee\"\r\n},", "attachment": [ { "id": "41883", "filename": "iOS Simulator Screen shot Aug 26, 2013 10.06.44 PM.png", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-08-27T05:08:41.000+0000", "size": 21221, "mimeType": "image/png" }, { "id": "41884", "filename": "iOS Simulator Screen shot Aug 26, 2013 10.07.03 PM.png", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-08-27T05:08:42.000+0000", "size": 24013, "mimeType": "image/png" }, { "id": "41885", "filename": "iOS Simulator Screen shot Aug 26, 2013 10.09.53 PM.png", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-08-27T05:10:09.000+0000", "size": 18917, "mimeType": "image/png" } ], "flagged": false, "summary": "iOS7: Bar Background Color Does Not Apply", "creator": { "name": "rblalock", "key": "rblalock", "displayName": "Rick Blalock", "active": false, "timeZone": "America/Havana" }, "subtasks": [], "reporter": { "name": "rblalock", "key": "rblalock", "displayName": "Rick Blalock", "active": false, "timeZone": "America/Havana" }, "environment": "iOS 7", "comment": { "comments": [ { "id": "267086", "author": { "name": "qonstrukt", "key": "qonstrukt", "displayName": "Stefan Moonen", "active": true, "timeZone": "Europe/Amsterdam" }, "body": "The strange thing is this actually worked with beta 2 and higher on Ti SDK 3.1.1, but stopped working with 3.1.2.\r\nA wild guess: beta 1 relied on tintColor, even for older apps, hence it didn't work then. Beta 2 changed that so old apps could rely on barColor again, but Ti SDK 3.1.2 started using tintColor on iOS 7, but when building apps with iOS SDK 6 it should still use barColor.", "updateAuthor": { "name": "qonstrukt", "key": "qonstrukt", "displayName": "Stefan Moonen", "active": true, "timeZone": "Europe/Amsterdam" }, "created": "2013-08-19T08:20:27.000+0000", "updated": "2013-08-19T08:21:32.000+0000" }, { "id": "268296", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Test Code used\n{code}\nvar tabGrp = Ti.UI.createTabGroup({\n\tbackgroundColor:'white',\n\torientationModes:[Ti.UI.PORTRAIT,Ti.UI.LANDSCAPE_LEFT,Ti.UI.LANDSCAPE_RIGHT]\n})\n\nvar win1 = Ti.UI.createWindow({\n\ttitle: \"Comments\", \n\tbarColor: \"#111\", \n\tbackgroundColor: \"#eee\"\n})\n\nvar win2 = Ti.UI.createWindow({\n\tbackgroundColor:'green',\n\ttitle:'two'\n})\n\nvar tab1 = Ti.UI.createTab({\n\twindow:win1,\n\ttitle:'TAB1'\n})\nvar tab2 = Ti.UI.createTab({\n\twindow:win2,\n\ttitle:'TAB2'\n})\n\ntabGrp.addTab(tab1)\ntabGrp.addTab(tab2)\n\ntabGrp.open();\n{code}", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-08-27T05:06:24.000+0000", "updated": "2013-08-27T05:06:24.000+0000" }, { "id": "268297", "author": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "body": "See screenshots above. Bar color does apply. The difference in color is due to the \"translucent\" property of window (true on IOS7+ and false on older versions). Setting translucent to false gets you the same color on IOS7 as on IOS6.\n\nGoing to mark this as invalid.", "updateAuthor": { "name": "vduggal", "key": "vduggal", "displayName": "Vishal Duggal", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-08-27T05:11:37.000+0000", "updated": "2013-08-27T05:11:37.000+0000" }, { "id": "416038", "author": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Closing", "updateAuthor": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2017-03-28T20:26:35.000+0000", "updated": "2017-03-28T20:26:35.000+0000" } ], "maxResults": 4, "total": 4, "startAt": 0 } } }