Hi !
I have a tableView with many items.
I have a click event where i get the index of item selected :
listTable.addEventListener('click', function(e){ var item = listData[e.index]; Ti.API.info("TEST : "+e.index); // Load view });But randomly, the e.index is wrong.
Do you have any idea where it may come ?
TY