Using the famous dataTables plugin, Every time that i draw rows to the table to be displayed, rowCallback adds a click handler to the row and as a result the event fires multi-times. How can some one avoid this behaviour ?
My Callback
rowCallback: function( row, data, index ) {
$(row).on("click", function(){
callMyMethod();
});
$(row).on("dblclick", function(){
});
},