Multiple click events in when editing datatables inline
Multiple click events in when editing datatables inline
FredHiers
Posts: 1Questions: 1Answers: 0
I know it's been asked before but I can't see to get my datatable click events to work correctly. I have tried to remove the event and rebind it every click however I am still getting events = X times the number of clicks
Thanks in advance for your help
$('#jsTable')
.off('click.rowClick')
.on('click.rowClick', 'tbody td.editable', function (e) {
var rdata = spooltable.row(this).data();
var cellData = spooltable.cell(this).data();
var colindex = spooltable.cell(this).index();
console.log('Hi Fred');
This discussion has been closed.
Answers
You code snippet works here:
http://live.datatables.net/haruluye/1/edit
Please provide a link to your page or update my example to replicate the issue.
Kevin