{ "id": "92897", "key": "TIMOB-9420", "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": "3", "description": "The problem is a duplicate of an existing issue.", "name": "Duplicate" }, "resolutiondate": "2012-06-06T18:10:30.000+0000", "created": "2012-06-06T11:18:55.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "SupportTeam", "api", "parity" ], "versions": [ { "id": "13271", "description": "Release 2.1.0", "name": "Release 2.1.0", "archived": false, "released": true, "releaseDate": "2012-06-29" } ], "issuelinks": [ { "id": "17697", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "outwardIssue": { "id": "92896", "key": "TIMOB-9419", "fields": { "summary": "Android: Tableview in a table row doesn't scroll on Android", "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": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-22T22:06:45.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": "10202", "name": "Android", "description": "Android Platform" } ], "description": "h3. Problem\r\n\r\nBuilding a drop down list that can be attached to the view within a table row works fine on iOS, but on Android the embedded table will not scroll. \r\n\r\nh3. Steps to Reproduce\r\n\r\nPlease run the code below :\r\n\r\n{noformat}\r\n\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\r\n//\r\n// create base UI tab and root window\r\n//\r\nvar windowView = Titanium.UI.createWindow({ \r\n title:'TableTest',\r\n backgroundColor:'#fff'\r\n});\r\n\r\nwindowView.add(createTable('test table row', 'white', 1));\r\n\r\nwindowView.open();\r\n\r\nfunction createTable(rowText, color, count) {\r\n \r\n var tableView = Ti.UI.createTableView({\r\n backgroundColor:color,\r\n height: Ti.UI.FILL\r\n });\r\n \r\n for (i=0; i