Problem description
When there are lots of elements (tested with 250) in a picker, the page takes lots of seconds to load.
Steps to reproduce
Use the following code to reproduce the error:
var win = Ti.UI.createWindow({
backgroundColor: 'white'
});
var picker = Ti.UI.createPicker({
top: '50dp',
height: '100dp',
width: '90%'
});
win.add(picker);
win.addEventListener('open', function() {
var countries = [];
for(var i=0; i<250; i++) {
countries.push(Ti.UI.createPickerRow({
title : "Country " + (i+1),
value : (i+1)
}));
}
picker.add(countries);
});
win.open();
Marking ticket as "Won't Fix" as MobileWeb has been deprecated.
Closing as will not fix.