Well, I don’t really know what you’re doing, but I tried the following code for a table and it works fine:
export function table1_rowSelect(event, $w) {
//Add your code for this event here:
let rowData = event.rowData;
console.log(rowData);
let rowIndex = event.rowIndex;
console.log(rowIndex);
}
I put some console.log() statements in to check that I was in fact retrieving the correct row and its information. It worked perfectly.
Can you supply more information on what you’re doing (and how)?