{ "id": "103095", "key": "TIMOB-11375", "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": "14165", "description": "2012 Sprint 21 API", "name": "2012 Sprint 21 API", "archived": true, "released": true, "releaseDate": "2012-10-22" }, { "id": "14273", "description": "2012 Sprint 21", "name": "2012 Sprint 21", "archived": true, "released": true, "releaseDate": "2012-10-22" } ], "resolution": { "id": "3", "description": "The problem is a duplicate of an existing issue.", "name": "Duplicate" }, "resolutiondate": "2012-11-06T17:58:33.000+0000", "created": "2012-10-11T00:14:19.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "api", "module_tableview", "qe-and100112", "qe-testadded", "regression" ], "versions": [ { "id": "13505", "description": "Release 3.0.0", "name": "Release 3.0.0", "archived": true, "released": true, "releaseDate": "2012-12-14" } ], "issuelinks": [ { "id": "21907", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "89279", "key": "TIMOB-8454", "fields": { "summary": "iOS: Ti.UI.TableView containing a Ti.UI.TableViewRow containing a Ti.UI.TextField adds blank space at the bottom", "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": "krowley", "key": "krowley", "displayName": "Karl Rowley", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2012-11-06T17:58: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": "10202", "name": "Android", "description": "Android Platform" } ], "description": "Description:\r\nMissing tableViewRows on Android.\r\n\r\nThis is a regression, does not occur on 2.1.3\r\n\r\nSteps:\r\n1. Run the following code:\r\n{code}\r\nvar win = Ti.UI.createWindow({\r\n fullscreen : false,\r\n backgroundColor : 'white'\r\n});\r\n \r\nvar tableView = Ti.UI.createTableView({\r\n top : '0dp',\r\n bottom : '0dp',\r\n left : '0dp',\r\n right : '0dp'\r\n});\r\n \r\nvar numRows = 15;\r\nvar rows = [];\r\nfor (var i = 0; i < numRows; i++){\r\n var tableViewRow = Ti.UI.createTableViewRow({\r\n height : 'auto'\r\n });\r\n \r\n var textField = Ti.UI.createTextField({\r\n top:'0dp',\r\n left : '5dp',\r\n right : '5dp',\r\n borderColor : '#CCCCCC',\r\n borderStyle : Ti.UI.INPUT_BORDERSTYLE_BEZEL\r\n });\r\n \r\n tableViewRow.add(textField);\r\n \r\n rows.push(tableViewRow);\r\n}\r\ntableView.data = rows;\r\nwin.add(tableView);\r\nwin.open();\r\n{code}\r\n\r\nExpected:\r\nShould see a tableView with tableViewRows\r\n\r\nActual:\r\nTableView is missing", "attachment": [], "flagged": false, "summary": "Android: TableView - Missing tableView with tableViewRows on Android", "creator": { "name": "tsmolich", "key": "tsmolich", "displayName": "Tamila Smolich", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "tsmolich", "key": "tsmolich", "displayName": "Tamila Smolich", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "Tested on:\r\nOS: Mac OS X Lion 10.7.4\r\nTitanium Studio, build: 3.0.0.201210090117\r\nTitanium SDK, build: 3.0.0.v20121010151054\r\nDevice: Samsung Galaxy III (4.0.4), Nexus (4.1.1)", "comment": { "comments": [ { "id": "223207", "author": { "name": "krowley", "key": "krowley", "displayName": "Karl Rowley", "active": true, "timeZone": "America/Los_Angeles" }, "body": "It works with the fix for [TIMOB-11320], I'm going to mark this as a duplicate.", "updateAuthor": { "name": "krowley", "key": "krowley", "displayName": "Karl Rowley", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-10-11T23:08:59.000+0000", "updated": "2012-10-11T23:08:59.000+0000" }, { "id": "223208", "author": { "name": "krowley", "key": "krowley", "displayName": "Karl Rowley", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Duplicate of [TIMOB-11320]", "updateAuthor": { "name": "krowley", "key": "krowley", "displayName": "Karl Rowley", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-10-11T23:10:02.000+0000", "updated": "2012-10-11T23:10:02.000+0000" }, { "id": "224064", "author": { "name": "tsmolich", "key": "tsmolich", "displayName": "Tamila Smolich", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Closing as fixed. Verified and tested on:\r\nTitanium Studio, build: 3.0.0.201210151149\r\nTitanium SDK, builds: 3.0.0.v20121017100120; 3.1.0.v20121017102121\r\nDevice: Nexus 7 (4.1.1)", "updateAuthor": { "name": "tsmolich", "key": "tsmolich", "displayName": "Tamila Smolich", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-10-17T21:22:07.000+0000", "updated": "2012-10-17T21:22:07.000+0000" }, { "id": "226320", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Editing to fix versions and labels", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-11-06T17:56:50.000+0000", "updated": "2012-11-06T17:56:50.000+0000" } ], "maxResults": 4, "total": 4, "startAt": 0 } } }