I have a tableview and populating the rows goes like so
projectData.push({color:'#000',title:response[i].vforums[j].title,hasChild:true,vforumLocation:response[i].vforums[j].location});for the click event, I use
event.row.vforumLocation.
That works great on iOS...android not so much. I get undefined. A work around is to do this in the click event, but I'd rather do it the other way. Anyone know what to do?
projectData[event.index].vforumLocation
1 Answer
Alright its event.rowData.vforumLocation
Looks like that has changed since I last used this
Your Answer
Think you can help? Login to answer this question!