fnUpdate in callback option of jEditable

fnUpdate in callback option of jEditable

LesignButureLesignButure Posts: 1Questions: 0Answers: 0
edited September 2013 in DataTables 1.9
Hello all,
I faced a strange problem when using this powerful plugin with jEditable, that is editable textbox will not disappear when losing focus.

Browser: IE 9
Datables: 1.9.4
jEditable: 1.7.1

Here is part of my code:
[code]
"fnDrawCallback": function () {
$('#STH tbody td.editable').editable(function (value, settings) {
return (value);
}, {
onblur: 'submit',
callback: function (value, settings) {
var aPos = oTable.fnGetPosition(this);
oTable.fnUpdate(value, aPos[0], aPos[1]);//If I comment out this line, the problem will gone.
}
});
}
[/code]

And this is to show the problem: http://jsfiddle.net/LesignButure/RS94H/
This discussion has been closed.