Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-17163] MobileWeb: Ti.UI.Picker cancel button does not work

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionFixed
Resolution Date2015-04-10T06:55:49.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsMobileWeb
Labelsn/a
ReporterDavide Cassenti
AssigneeChris Barber
Created2014-06-16T14:46:29.000+0000
Updated2017-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();

Steps

1. Run the code sample above 2. Click on the picker 3. Try to hit the cancel button

Comments

  1. Zsolt RestyƔnszki 2015-03-30

    The problem is still exists in SDK Version 3.5.1.GA. When will fix this problem?
  2. Chris Barber 2015-04-03

    Master pull request: https://github.com/appcelerator/titanium_mobile/pull/6765 4_0_X pull request: https://github.com/appcelerator/titanium_mobile/pull/6766
  3. Feon Sua Xin Miao 2015-04-10

    PR merged.
  4. Lee Morris 2017-03-16

    Closing ticket as fixed.

JSON Source