Deferred Rendering Stopped Working

Deferred Rendering Stopped Working

sk8chittysk8chitty Posts: 4Questions: 0Answers: 0
edited September 2011 in DataTables 1.8
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

Replies

  • sk8chittysk8chitty Posts: 4Questions: 0Answers: 0
    edited September 2011
    UPDATE:

    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]
This discussion has been closed.