I am trying to acomplish the folowing I have 2 buttons on the right and some text on the left of each row
I want different events when taping on each one...but the whole tablerow selects itself...then deselects iself...
1 Answer
Accepted Answer
try:
table.addEventListener('click',function(e){ alert(e.source); // if e.source is Ti.UI.Button then perform whatever you want });
Your Answer
Think you can help? Login to answer this question!