{ "id": "81761", "key": "TIMOB-5801", "fields": { "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "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": "13271", "description": "Release 2.1.0", "name": "Release 2.1.0", "archived": false, "released": true, "releaseDate": "2012-06-29" }, { "id": "13406", "description": "Sprint 2012-10 API", "name": "Sprint 2012-10 API", "archived": true, "released": true, "releaseDate": "2012-05-20" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2012-05-15T13:50:40.000+0000", "created": "2011-10-20T00:21:37.000+0000", "priority": { "name": "Medium", "id": "3" }, "labels": [ "api", "qe-testadded" ], "versions": [ { "id": "13272", "description": "Release 2.0.1", "name": "Release 2.0.1", "archived": true, "released": true, "releaseDate": "2012-04-16" } ], "issuelinks": [], "assignee": { "name": "srahim", "key": "srahim", "displayName": "Sabil Rahim", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2012-06-06T11:58:46.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": "The color underPageBackgroundColor is available in iOS 5. So it should be made available:\r\nhttp://developer.apple.com/library/IOS/#documentation/UIKit/Reference/UIColor_Class/Reference/Reference.html", "attachment": [], "flagged": false, "summary": "iOS: UI - Add support for underPageBackgroundColor", "creator": { "name": "mofle", "key": "mofle", "displayName": "Sindre Sorhus", "active": true, "timeZone": "Europe/Oslo" }, "subtasks": [], "reporter": { "name": "mofle", "key": "mofle", "displayName": "Sindre Sorhus", "active": true, "timeZone": "Europe/Oslo" }, "environment": null, "comment": { "comments": [ { "id": "169784", "author": { "name": "mapperson", "key": "mapperson", "displayName": "Matthew Apperson", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Pull request made - https://github.com/appcelerator/titanium_mobile/pull/566", "updateAuthor": { "name": "mapperson", "key": "mapperson", "displayName": "Matthew Apperson", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2011-10-20T04:30:59.000+0000", "updated": "2011-10-20T04:30:59.000+0000" }, { "id": "177250", "author": { "name": "pdowsett", "key": "pdowsett", "displayName": "Paul Dowsett", "active": true, "timeZone": "Europe/London" }, "body": "Please see Matt Apperson's Pull Request for this.", "updateAuthor": { "name": "pdowsett", "key": "pdowsett", "displayName": "Paul Dowsett", "active": true, "timeZone": "Europe/London" }, "created": "2011-12-27T06:47:32.000+0000", "updated": "2011-12-27T06:47:32.000+0000" }, { "id": "194324", "author": { "name": "srahim", "key": "srahim", "displayName": "Sabil Rahim", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Testing code for the [PULL REQUEST|https://github.com/appcelerator/titanium_mobile/pull/2163]\r\n\r\n{code:JavaScript|title:app.js}\r\n// this sets the background color of the master UIView (when there are no windows/tab groups on it)\r\nTitanium.UI.setBackgroundColor('#000');\r\n \r\n// create tab group\r\nvar tabGroup = Titanium.UI.createTabGroup();\r\n \r\n \r\n//\r\n// create base UI tab and root window\r\n//\r\nvar win1 = Titanium.UI.createWindow({ \r\n title:'SCROLLVIEW',\r\n backgroundColor:Ti.UI.iOS.COLOR_SCROLLVIEW_BACKGROUND\r\n});\r\nvar tab1 = Titanium.UI.createTab({ \r\n icon:'KS_nav_views.png',\r\n title:'SCROLLVIEW',\r\n window:win1\r\n});\r\n \r\n \r\n \r\n//\r\n// create controls tab and root window\r\n//\r\nvar win2 = Titanium.UI.createWindow({ \r\n title:'VIEW_FLIPSIDE',\r\n backgroundColor:Ti.UI.iOS.COLOR_VIEW_FLIPSIDE_BACKGROUND\r\n});\r\nvar tab2 = Titanium.UI.createTab({ \r\n icon:'KS_nav_ui.png',\r\n title:'VIEW_FLIPSIDE',\r\n window:win2\r\n});\r\n \r\n//\r\n// create controls tab and root window\r\n//\r\nvar win3 = Titanium.UI.createWindow({ \r\n title:'UNDER_PAGE',\r\n backgroundColor:Ti.UI.iOS.COLOR_UNDER_PAGE_BACKGROUND\r\n});\r\nvar tab3 = Titanium.UI.createTab({ \r\n icon:'KS_nav_ui.png',\r\n title:'UNDER_PAGE',\r\n window:win3\r\n});\r\n \r\n \r\n//\r\n// add tabs\r\n//\r\ntabGroup.addTab(tab1); \r\ntabGroup.addTab(tab2); \r\ntabGroup.addTab(tab3);\r\n \r\n\r\n \r\n// open tab group\r\ntabGroup.open();\r\n\r\n\r\n{code}", "updateAuthor": { "name": "srahim", "key": "srahim", "displayName": "Sabil Rahim", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-05-09T15:37:40.000+0000", "updated": "2012-05-09T15:37:40.000+0000" }, { "id": "197544", "author": { "name": "nhuynh", "key": "nhuynh", "displayName": "Natalie Huynh", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Tested with 2.1.0.v20120605113335 on\r\niPhone 4s 5.1\r\niPhone 3gs 4.3", "updateAuthor": { "name": "nhuynh", "key": "nhuynh", "displayName": "Natalie Huynh", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-06-06T11:58:46.000+0000", "updated": "2012-06-06T11:58:46.000+0000" } ], "maxResults": 4, "total": 4, "startAt": 0 } } }