The event you receive in your onRowTouch handler has event.target and event.row in it, but they’re the same. event.target needs to be the tableView itself, as it is with onRowRender, or there’s no way to get to the tableView object from within the onRowTouch event.
This prevents accessing data at the tableView level when doing an onRowTouch, and since you have to define onRowTouch before calling newTableView(), you can’t use a closure to get the tableView into onRowTouch as an upvalue.
I’m converting from the old widgets, and this has stopped me for the moment.
Best regards,
Andy