Deferred Rendering Stopped Working
Deferred Rendering Stopped Working
sk8chitty
Posts: 4Questions: 0Answers: 0
I've been working on a project using datatables' deferred rendering and it was working fine for about a month until today, when it stopped working for no apparent reason!
This is my Initialisation code:
[code]
$(document).ready(function() {
var oTable = $('#sort').dataTable( {
"bStateSave": true,
"bProcessing": true,
"sAjaxSource": "Zona.txt",
"bDeferRender": true
} );
} );
[/code]
And the problem seems to be that datatables is not reading from the "sAjaxSource" for some reason, because it always displays the table empty while the "sAjaxSource" file is not empty!
I even downloaded the jQuery.dataTables.js file again and replaced the one I have to see if that solved the problem, but notting happened.
Can you please help me find a solution for this strange problem?
Thank you very much
This is my Initialisation code:
[code]
$(document).ready(function() {
var oTable = $('#sort').dataTable( {
"bStateSave": true,
"bProcessing": true,
"sAjaxSource": "Zona.txt",
"bDeferRender": true
} );
} );
[/code]
And the problem seems to be that datatables is not reading from the "sAjaxSource" for some reason, because it always displays the table empty while the "sAjaxSource" file is not empty!
I even downloaded the jQuery.dataTables.js file again and replaced the one I have to see if that solved the problem, but notting happened.
Can you please help me find a solution for this strange problem?
Thank you very much
This discussion has been closed.
Replies
Hello, I used jQuery.noConflict(); with this and other jQuery functions I have and it's working again, thank God!
[code] http://docs.jquery.com/Using_jQuery_with_Other_Libraries [/code]