Titanium JIRA Archive
Appcelerator Community (AC)

[AC-3059] TextArea not firing some events on iOS (touchstart, touchend, doubletap, swipe, singletap)

GitHub Issuen/a
TypeBug
Priorityn/a
StatusClosed
ResolutionDuplicate
Resolution Date2011-06-21T04:48:35.000+0000
Affected Version/sn/a
Fix Version/sn/a
Componentsn/a
Labelsios, release-1.7.0
Reporterjammer
AssigneeTony Guntharp
Created2011-06-21T02:27:03.000+0000
Updated2016-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);

Comments

  1. jammer 2011-06-21

    NB: same bug as #TIMOB-4245
  2. Paul Dowsett 2011-06-21

    Jammer Please don't duplicate tickets. You could have used the comment facility in ticket TIMOB-4245 instead
  3. Paul Dowsett 2011-08-16

    Closed after 30 days of inactivity.

JSON Source