This code fix the problem with Internet Explorer when you try to use Editor or Bubble. You must put this code after "dataTables.editor.min.js" has been defined:
$.fn.DataTable.Editor.Field.prototype.processing = function (set) {
if (set === undefined) {
return this.dom.processing.is(':visible');
}
this.dom.processing.css('display', set ? 'block' : 'none');
this.s.host._event('processing-field', [set]);
return this;
}
Yep, I'm seeing that too, thanks for reporting. I've raised it internally (DD-1776 for my reference) and we'll report back here when there's an update.
Answers
Finally I found solution, debugging code.
This code fix the problem with Internet Explorer when you try to use Editor or Bubble. You must put this code after "dataTables.editor.min.js" has been defined:
I hope this can help you
Yep, I'm seeing that too, thanks for reporting. I've raised it internally (DD-1776 for my reference) and we'll report back here when there's an update.
Cheers,
Colin
i have it working now. here is how I am calling it when from a clickabble div or td or anchor tag. they all are assigned editable class.
THis is the main bit here:
;
;
editor is my variable name for that specific editor
same with table, that's the variable for that specific table
sorry I am just putting partial code here
Nice, thanks for posting,
Colin