Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-10131] MobileWeb: IE9 is not showing TiScrollableView correctly

GitHub Issuen/a
TypeBug
PriorityCritical
StatusClosed
ResolutionDuplicate
Resolution Date2012-07-25T09:05:56.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsMobileWeb
Labelsbrowser, scrollableview
ReporterManfredo Valdés
AssigneeChris Barber
Created2012-07-24T13:14:13.000+0000
Updated2014-01-28T23:48:59.000+0000

Description

TiScrollableView is only showing the first two elements on IE9 (works fine on other browsers). Steps to reproduce: 1. Create app with this code: (also attached)
var win = Ti.UI.createWindow({
	backgroundColor:'#ffffff'
});
var mainView = Ti.UI.createView({
	width: '100%',
	height: '100%'
});
var scrollableView = Ti.UI.createScrollableView({
	borderColor: '#f00',
	borderWidth: 1,
	top: 10,
	bottom: 10,
	left: 10,
	right: 10,
	showPagingControl: false
});
var view1 = Ti.UI.createView({
	backgroundColor: '#ff0',
	width: '100%',
	height: '100%'
});
var view2 = Ti.UI.createView({
	backgroundColor: '#f00',
	width: '100%',
	height: '100%'
});
var view3 = Ti.UI.createView({
	backgroundColor: '#0f0',
	width: '100%',
	height: '100%'
});
var view4 = Ti.UI.createView({
	backgroundColor: '#00f',
	width: '100%',
	height: '100%'
});
scrollableView.addView(view1);
scrollableView.addView(view2);
scrollableView.addView(view3);
scrollableView.addView(view4);

mainView.add(scrollableView);
win.add(mainView);
win.open();
2. Preview in MobileWeb Browser (and open url on IE9 if it's not configured this way) 3. Advance through the scrollable view and get to the third (green) and fourth (blue) views. Actual Result: It will scroll through the first two views of the scrollable view. Expected Result: It should allow you to scroll all the way to the third and fourth views.

Attachments

FileDateSize
app.js2012-07-24T13:14:13.000+0000855

Comments

  1. Bryan Hughes 2012-07-25

    Duplicate of TIMOB-9519

JSON Source