Problem loading AJAX data

Problem loading AJAX data

RKilleRKille Posts: 3Questions: 0Answers: 0
edited July 2011 in General
I'm loading a table of 880 rows via AJAX and it is freezing on loading.

Using the Firebug debugger in firefox (same error happens in Chrome's built in) it comes up with the error "aData is undefined" on line 2389 "for ( i=0 ; i

Replies

  • fbasfbas Posts: 1,094Questions: 4Answers: 0
    Can you post a link to your page? Or post more of your code.
  • RKilleRKille Posts: 3Questions: 0Answers: 0
    cannith.deathwishgame.co.uk

    data therein is as yet unlicensed, but I retain all intellectual property.
  • allanallan Posts: 63,523Questions: 1Answers: 10,473 Site admin
    Looks like the error is correct :-). You have "aadata" in your Ajax data source - but Javascript is case sensitive. Try "aaData" and it should work okay.

    Allan
  • RKilleRKille Posts: 3Questions: 0Answers: 0
    Thank you. depressingly easy fix...
This discussion has been closed.