Issue
Picker in scrollableView not working.
Tested on
Android Emulator 2.2
Droid Razr 2.3.5
Runtime Engines
Rhino / V8
Steps to reproduce
1. Run code below
2. Click the picker
Expected behavior
See fully operational Pickers whose options render on screen
Repro sequence
var self = Ti.UI.createWindow({
fullscreen : true
});
var vw = Ti.UI.createView({
width : '100%',
height : '100%'
});
var picker = Ti.UI.createPicker({
});
for(var i = 0; i <= 10; i++) {
picker.add(Ti.UI.createPickerRow({
title : 'Item ' + i
}));
}
vw.add(picker);
var views = [];
views.push(vw);
var scroll = Ti.UI.createScrollableView({
width : '100%',
height : '100%',
views : views
});
self.add(scroll);//it won't work with this
//self.add(vw);//uncomment this to get it working on a view
self.open();
same problem with ScrollView
problem: the picker does not function.
Hani Hamadeh The Picker in scrollView not working is filed here: TIMOB-8470 Next time please create a separate Jira ticket, thanks.
Duplicate of timob-8470