hello guys, how can I add an event to a single row of a table?
1 Answer
Just as with other parts of the UI, TableViewRows have to ability to listen for events. So during your table creation, you can add an event listener just to the row that you want.
var row = Ti.UI.createTableViewRow(); row.addEventListener('click', function(e) { });
Your Answer
Think you can help? Login to answer this question!