Reading row data
Reading row data
jeffrobinson
Posts: 4Questions: 0Answers: 0
Is it possible to add an event to a clicking on a row that would call a function with that's rows data as parameters?
Thanks - J
Thanks - J
This discussion has been closed.
Replies
[code]
var table = $('#example').dataTable();
$('#example').live( 'click', function () {
myFunction( table.fnGetData( this ) );
} );
[/code]
Allan