click event on editor
click event on editor
i have server-side processing example . the click function on dooes not work
oTable = $('#example').dataTable();
$("#example td").click(function(event) {
var data = oTable.fnGetData( this );
alert( 'The cell clicked on had the value of '+data );
});
oTable = $('#example').dataTable();
$("#example td").click(function(event) {
var data = oTable.fnGetData( this );
alert( 'The cell clicked on had the value of '+data );
});
This discussion has been closed.