[TIMOB-10131] MobileWeb: IE9 is not showing TiScrollableView correctly
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Critical |
Status | Closed |
Resolution | Duplicate |
Resolution Date | 2012-07-25T09:05:56.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | MobileWeb |
Labels | browser, scrollableview |
Reporter | Manfredo Valdés |
Assignee | Chris Barber |
Created | 2012-07-24T13:14:13.000+0000 |
Updated | 2014-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
File | Date | Size |
---|---|---|
app.js | 2012-07-24T13:14:13.000+0000 | 855 |
Duplicate of TIMOB-9519