{ "id": "61875", "key": "TIMOB-1243", "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": [], "resolution": { "id": "5", "description": "All attempts at reproducing this issue failed, or not enough information was available to reproduce the issue. Reading the code produces no clues as to why this behavior would occur. If more information appears later, please reopen the issue.", "name": "Cannot Reproduce" }, "resolutiondate": "2019-04-04T21:21:33.000+0000", "created": "2011-04-15T02:47:32.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [ "api", "reprod" ], "versions": [ { "id": "13505", "description": "Release 3.0.0", "name": "Release 3.0.0", "archived": true, "released": true, "releaseDate": "2012-12-14" } ], "issuelinks": [], "assignee": { "name": "ahutton", "key": "ahutton", "displayName": "Alan Hutton", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2019-04-04T21:21:33.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": "{html}
Label in a tableRow has a background color set.
\r\nOn tableRow selection the background of the Label disappears\r\nregardless of the label colour used.
See two states in this\r\nimage
\r\nOn deselection the background color of the Label waits for the\r\ntableRow selection to fade out completely before redisplaying.
\r\nI'm sure this is just a z sorting issue but it looks like the\r\ntableRow selection is overriding any text label backgrounds.
Valid. Test:
\n\nvar win = Ti.UI.createWindow({backgroundColor:'white'});\n\nvar label = Ti.UI.createLabel({\n text:'Foo',\n backgroundColor:'green'\n});\n\nvar row = Ti.UI.createTableViewRow();\nrow.add(label);\n\nvar tableview = Ti.UI.createTableView();\ntableview.appendRow(row);\nwin.add(tableview);\n\nwin.open();
\n
\nPossibly part of the Tableview Penumbra.