{ "id": "61160", "key": "TIMOB-528", "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": "13272", "description": "Release 2.0.1", "name": "Release 2.0.1", "archived": true, "released": true, "releaseDate": "2012-04-16" } ], "resolution": { "id": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2012-04-27T16:49:59.000+0000", "created": "2011-04-15T02:31:05.000+0000", "priority": { "name": "Medium", "id": "3" }, "labels": [ "defect", "ios", "iphone", "qe-testadded", "scrollview", "tableview" ], "versions": [], "issuelinks": [ { "id": "19012", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "97689", "key": "TIMOB-10049", "fields": { "summary": "Android: ScrollView - Device rotation causes crash 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 } } } }, { "id": "21114", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "101523", "key": "TIMOB-10992", "fields": { "summary": "Android: ScrollView - Missing scrollable area 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 } } } }, { "id": "21841", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "102970", "key": "TIMOB-11320", "fields": { "summary": "Android: ScrollView - App crashes on launch", "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": "2012-10-09T19:07:54.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}
from community.
\ncode:
\nvar data = [];
\nvar win = Ti.UI.createWindow();
var row =\nTi.UI.createTableViewRow({className:'scrolltab',height:67,backgroundColor:'#fff',selectionStyle:Ti.UI.iPhone.TableViewCellSelectionStyle.NONE});
\nvar scrollView = Titanium.UI.createScrollView({\n contentWidth:500,\n contentHeight:50,\n top:10,\n height:50,\n width:230,\n borderRadius:10,\n backgroundColor:'#13386c'\n});\nrow.add(scrollView);\nvar view1 = Ti.UI.createView({\n backgroundColor:'#336699',\n width:440,\n height:40,\n left:10\n});\nscrollView.add(view1);\n// add a bunch more views to the scrollView \n\ndata.push(row);\n\nfeedTableView = Titanium.UI.createTableView({\n data:data\n});\n\nwin.add(feedTableView);
\n
\nwin.open();
i don't doubt it. :<
My main concern about this is one of events trapping. This might\nbe something I don't need to worry about, but it is something that\nmay be an obstacle.
Same issue seems to occur with a ScrollableView. I noticed while\ntrying to create something like the Trending Now section of the\nTwitter for iPhone app. Thanks for looking into it.
valid, needs testcase
I was able to work around the issue by defining an empty\nfunction and assigning it to the click events of the\nscroll/scrollable view and the table row. Seems to override\nwhatever prevents the touch from bubbling down the the inner view.\nI'll post on the community Q&A section.
you can also try touchEnabled: false