[AC-3059] TextArea not firing some events on iOS (touchstart, touchend, doubletap, swipe, singletap)
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | n/a |
Status | Closed |
Resolution | Duplicate |
Resolution Date | 2011-06-21T04:48:35.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | n/a |
Labels | ios, release-1.7.0 |
Reporter | jammer |
Assignee | Tony Guntharp |
Created | 2011-06-21T02:27:03.000+0000 |
Updated | 2016-03-08T07:48:06.000+0000 |
Description
TextArea does not fire some events on iOS (touchstart, touchend, doubletap, swipe, singletap)
Ex :
var win = Titanium.UI.createWindow({ backgroundColor:'#FFF' });
win.open();
var TA = Ti.UI.createTextArea({
width:292,
height:300,
backgroundColor:'#222'
});
TA.addEventListener('touchstart', function(e) { Ti.API.info('touchstart fired'); });
TA.addEventListener('doubletap',function(e) { Ti.API.info('doubletap fired'); });
TA.addEventListener('singletap',function(e) { Ti.API.info('singletap fired'); });
TA.addEventListener('swipe',function(e) { Ti.API.info('swipe fired'); });
win.add(TA);
NB: same bug as #TIMOB-4245
Jammer Please don't duplicate tickets. You could have used the comment facility in ticket TIMOB-4245 instead
Closed after 30 days of inactivity.