[TIMOB-17163] MobileWeb: Ti.UI.Picker cancel button does not work
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2015-04-10T06:55:49.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | MobileWeb |
| Labels | n/a |
| Reporter | Davide Cassenti |
| Assignee | Chris Barber |
| Created | 2014-06-16T14:46:29.000+0000 |
| Updated | 2017-03-16T22:25:34.000+0000 |
Description
Description
When using a Picker in MobileWeb, the cancel button is not working.Code sample
var win = Titanium.UI.createWindow({
backgroundColor: 'white'
});
var picker = Ti.UI.createPicker({
width : 150,
height: 150
});
var data = [];
for (var i = 0; i < 2; i++) {
data.push(Titanium.UI.createPickerRow({title : 'Test ' + i}));
}
picker.add(data);
win.add(picker);
win.open();
The problem is still exists in SDK Version 3.5.1.GA. When will fix this problem?
Master pull request: https://github.com/appcelerator/titanium_mobile/pull/6765 4_0_X pull request: https://github.com/appcelerator/titanium_mobile/pull/6766
PR merged.
Closing ticket as fixed.