{ "id": "152907", "key": "TIMOB-19921", "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": "16997", "name": "Release 5.2.0", "archived": false, "released": true, "releaseDate": "2016-02-23" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2015-11-23T14:40:49.000+0000", "created": "2015-11-11T23:06:33.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [], "versions": [ { "id": "14826", "description": "Release 5.1.0-remaining iOS9 features, Android M features", "name": "Release 5.1.0", "archived": false, "released": true, "releaseDate": "2015-11-20" } ], "issuelinks": [ { "id": "49860", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "152831", "key": "TIMOB-19897", "fields": { "summary": "Label's getRect method returns \"not a function\" on Windows Phone 8.1", "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": "49718", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "152558", "key": "TIMOB-19837", "fields": { "summary": "Windows: Missing TitaniumKit View properties", "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": "Medium", "id": "3" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-21T22:38:16.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": "12642", "name": "Windows", "description": "Windows authoring support" } ], "description": "From TIMOB-19837 Ti.UI.View TitaniumKit introduces a lot of properties. Ti.UI.View for Windows should implement them as much as possible.", "attachment": [], "flagged": false, "summary": "Windows: Implement missing View properties", "creator": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "environment": null, "closedSprints": [ { "id": 529, "state": "closed", "name": "2015 Sprint 24 SDK", "startDate": "2015-11-21T01:30:12.670Z", "endDate": "2015-12-05T01:30:00.000Z", "completeDate": "2015-12-07T03:57:17.094Z", "originBoardId": 114 } ], "comment": { "comments": [ { "id": "370810", "author": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "body": "https://github.com/appcelerator/titanium_mobile_windows/pull/477\r\n\r\nh5. Newly supported View properties\r\n\r\n* backgroundFocusedColor\r\n* backgroundFocusedImage\r\n* backgroundGradient\r\n* backgroundSelectedColor\r\n* backgroundSelectedImage\r\n* borderColor\r\n* borderWidth\r\n\r\nh5. Test case\r\n\r\n{code:javascript}\r\nvar win = Ti.UI.createWindow();\r\nvar view = Ti.UI.createView({width:'50%', height:'50%'});\r\n\r\n//view.backgroundImage = 'http://www.appcelerator.com/wp-content/themes/appc-rwd/assets/media/images/logo.png';\r\n//view.backgroundColor = 'green';\r\n//view.backgroundFocusedColor = \"green\";\r\n//view.backgroundSelectedColor = \"blue\";\r\n//view.backgroundSelectedImage = \"Square71x71Logo.png\";\r\n//view.backgroundFocusedImage = \"Square71x71Logo.png\";\r\n\r\nview.backgroundGradient = {\r\n type: 'linear',\r\n startPoint: { x: '0%', y: '50%' },\r\n endPoint: { x: '100%', y: '100%' },\r\n colors: [{ color: 'red', offset: 0.0 }, { color: 'blue', offset: 0.25 }, { color: 'red', offset: 1.0 }],\r\n}\r\nwin.add(view);\r\nwin.open();\r\n{code}\r\n\r\nThere are some known issues. See comments in [PR 477|https://github.com/appcelerator/titanium_mobile_windows/pull/477] for details.", "updateAuthor": { "name": "kiguchi", "key": "kota", "displayName": "Kota Iguchi", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2015-11-19T14:18:03.000+0000", "updated": "2015-11-19T14:18:03.000+0000" }, { "id": "376644", "author": { "name": "jlongton", "key": "jlongton", "displayName": "Josh Longton", "active": true, "timeZone": "Europe/London" }, "body": "[~kota] Works as expected, Will you be updating the docs to show that selected/focused properties for the view are not working as of yet.\r\n ", "updateAuthor": { "name": "jlongton", "key": "jlongton", "displayName": "Josh Longton", "active": true, "timeZone": "Europe/London" }, "created": "2016-02-11T18:32:54.000+0000", "updated": "2016-02-11T18:32:54.000+0000" }, { "id": "414594", "author": { "name": "lmorris", "key": "lmorris", "displayName": "Lee Morris", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Closing ticket as fixed.", "updateAuthor": { "name": "lmorris", "key": "lmorris", "displayName": "Lee Morris", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2017-03-21T22:38:16.000+0000", "updated": "2017-03-21T22:38:16.000+0000" } ], "maxResults": 3, "total": 3, "startAt": 0 } } }