Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-8435] MobileWeb: Can't scroll WebView on mobile devices

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionFixed
Resolution Date2013-08-20T20:11:21.000+0000
Affected Version/sRelease 2.0.0
Fix Version/s2013 Sprint 17, 2013 Sprint 17 Tooling, Release 3.1.3, Release 3.2.0
ComponentsMobileWeb
Labelsn/a
ReporterChris Barber
AssigneeBryan Hughes
Created2012-03-30T03:18:21.000+0000
Updated2013-08-23T09:49:07.000+0000

Description

Can't scroll a WebView with a tall webpage. Tested on a iPad. Either need to not intercept touches or try to open URLs in a new window and hope it doesn't get popup blocked.

Comments

  1. Bryan Hughes 2013-08-12

    PR: https://github.com/appcelerator/titanium_mobile/pull/4568
  2. Bryan Hughes 2013-08-12

    Test code:
       var win = Ti.UI.createWindow({
       		backgroundColor: '#fff'
       	}),
       	webview = Ti.UI.createWebView({
       		borderColor: '#000',
       		borderWidth: 1,
       		url: 'http://penny-arcade.com/report/article/why-the-dreamcast-failed-and-all-the-things-it-did-better-than-its-competit',
       		left: '20%',
       		right: '20%',
       		top: '20%',
       		bottom: '20%'
       	});
       
       win.add(webview);
       win.open();
       
  3. Bryan Hughes 2013-08-16

    3_1_X PR: https://github.com/appcelerator/titanium_mobile/pull/4579
  4. Paras Mishra 2013-08-23

    Webpage is getting scrolled up and down using the webview deployed as mobileweb app on the android and iOS devices. Verified on: Device: Device : iPad mini, iOS version: 6 Device : Google Nexus 7, Android Version: 4.1 SDK: 3.1.3.v20130822140128 CLI version : 3.1.2 OS : MAC OSX 10.8.4 Alloy : 1.2.1-cr Appcelerator Studio, build: 3.1.3.201308201707 XCode : 5.0

JSON Source