I think the example "jEditable integration with DataTable" has a Infinite loop

I think the example "jEditable integration with DataTable" has a Infinite loop

xudanhuixudanhui Posts: 1Questions: 0Answers: 0
edited March 2012 in DataTables 1.9
$(document).ready(function() {
var oTable = $('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "scripts/server_processing.php",
"fnDrawCallback": function () {
$('#example tbody td').editable( '../examples_support/editable_ajax.php', {
"callback": function( sValue, y ) {
/* Redraw the table from the new data on the server */
oTable.fnDraw();
},
"height": "14px"
} );
}
} );
} );

on the fnDrawCallback function shouldn't oTable.fnDraw() , is anybody think so ? or I have Understanding of error?
This discussion has been closed.