If I have something like:
table.on( 'select', function ( e, dt, type, indexes ) {
if ( type === 'row' ) {
blah, blah
}
} );
how can I access the values of the data on the row that was selected?
I tried:
table.row(this).data()
but it comes undefined. Not sure why.