{ "id": "61272", "key": "TIMOB-640", "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": "1", "description": "A fix for this issue is checked into the tree and tested.", "name": "Fixed" }, "resolutiondate": "2011-07-28T17:05:27.000+0000", "created": "2011-04-15T02:33:28.000+0000", "priority": { "name": "Medium", "id": "3" }, "labels": [ "1.1.2", "ios", "ipad" ], "versions": [], "issuelinks": [], "assignee": { "name": "rseagraves", "key": "rseagraves", "displayName": "Reggie Seagraves", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2011-07-28T17:05:27.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}
If adding more than one web view to a scrollable view, only the\nfirst web view is shown.
\nThis appear to be a new in 1.1.2
\nvar wv1 = Titanium.UI.createWebView({url:'http://www.thorson.dk/saxotimes/terror.html'});
\nvar wv2 = Titanium.UI.createWebView({url:'http://www.thorson.dk/saxotimes/naboer.html'});
\n
\nvar scrollView =\nTitanium.UI.createScrollableView({views:[wv1,wv2],showPagingControl:false});
\n
\nwin.add(scrollView);
\nwin.show(scrollView);