{ "id": "103089", "key": "TIMOB-11371", "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:59:14.000+0000", "created": "2012-10-10T23:36:46.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": "21898", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "83764", "key": "TIMOB-6645", "fields": { "summary": "Tableview Scrollable:false breaks with textField in row", "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": "krowley", "key": "krowley", "displayName": "Karl Rowley", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2012-11-06T17:59:14.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\nUnable to bring-up a soft-keyboard, since textfields for \"username\" and \"password\" are missing.\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\tbackgroundColor: 'white'\r\n});\t\r\n\t\tvar data = [];\r\n\t\tvar txtUsername = Ti.UI.createTextField({\r\n\t\t\tleft: 10,\r\n\t\t\tright: 10,\r\n\t\t\thintText: 'Username',\r\n\t\t\tborderWidth: 0,\r\n\t\t\tborderStyle: null\r\n\t\t});\r\n\t\t\r\n\t\tvar rowUsername = Ti.UI.createTableViewRow({});\r\n\t\trowUsername.add(txtUsername);\r\n\t\tdata.push(rowUsername);\r\n\t\tvar txtPassword = Ti.UI.createTextField({\r\n\t\t\tleft: 10,\r\n\t\t\tright: 10,\r\n\t\t\thintText: 'Password',\r\n\t\t\tborderWidth: 0,\r\n\t\t\tborderStyle: null\r\n\t\t});\r\n\t\t\r\n\t\tvar rowPassword = Ti.UI.createTableViewRow({});\r\n\t\trowPassword.add(txtPassword);\r\n\t\tdata.push(rowPassword);\r\n\t\tvar view = Ti.UI.createScrollView({\r\n\t\t contentWidth: 'auto',\r\n\t\t contentHeight: 'auto',\r\n\t\t height:480,\r\n\t\t width:320,\r\n\t\t bottom:0\r\n\t\t});\r\n\t\t\r\n\t\tvar table = Ti.UI.createTableView({\r\n\t\t\t\ttop:200,\r\n\t\t\t\theight: 200,\r\n\t\t\t\tstyle: Ti.UI.iPhone.TableViewStyle.GROUPED,\r\n\t\t\t\tbackgroundColor: 'transparent',\r\n\t\t\t\trowBackgroundColor: '#FFFFFF',\r\n\t\t\t\tallowsSelection: false,\r\n\t\t\t\tscrollable: false,\r\n\t\t\t\tdata: data,\r\n\t\t\t\tmoving:false\r\n\t\t\t});\r\n\r\n\t\tview.add(table);\r\n\t\twin.add(view);\r\n\t\twin.fullscreen = true;\r\n\t\twin.open();\r\n{code}\r\n\r\nExpected:\r\nShould see two textfields for \"username\" and \"password\"\r\n\r\nActual:\r\nTextfields are missing", "attachment": [], "flagged": false, "summary": "Android: TableView - Missing textfields for \"username\" and \"password\"", "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 7 (4.1.1)", "comment": { "comments": [ { "id": "223204", "author": { "name": "krowley", "key": "krowley", "displayName": "Karl Rowley", "active": true, "timeZone": "America/Los_Angeles" }, "body": "It works with the fix for [TIMOB-11320] applied -- 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:03:15.000+0000", "updated": "2012-10-11T23:03:15.000+0000" }, { "id": "223205", "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:04:21.000+0000", "updated": "2012-10-11T23:04:21.000+0000" }, { "id": "224050", "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-17T20:46:46.000+0000", "updated": "2012-10-17T20:46:46.000+0000" }, { "id": "226321", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Reopened to fix versions and labels", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-11-06T17:59:14.000+0000", "updated": "2012-11-06T17:59:14.000+0000" } ], "maxResults": 4, "total": 4, "startAt": 0 } } }