Upgraded from 1.6.2 to 1.7.3

Upgraded from 1.6.2 to 1.7.3

mcoolinmcoolin Posts: 4Questions: 0Answers: 0
edited October 2010 in Bug reports
Hi,

I just upgraded from 1.6.2 to 1.7.3 and I tend to work with recordsets of about 4000 records. In 1.6.2 everything worked find, a bit slow but usable.

In 1.7.3 I get a long running script error and the page never seems to return from the call. IE 8 becomes unresponsive.

One suggestion I have is adding the version number to your filename it makes it eay to see which version of code is being used.

Replies

  • mcoolinmcoolin Posts: 4Questions: 0Answers: 0
    Ran a few more tests, even with a little over 1000 records I get the long running script error.

    My call reguardless of version is as follows:
    [code]
    oTable = $('#tActivity').dataTable({
    "bPaginate": false,
    "aaSorting": [[2, "desc"]],
    "bLengthChange": false,
    // "iDisplayLength": 20,
    "bFilter": true,
    "bProcessing": true,
    "bSort": true,
    "bInfo": true,
    "bJQueryUI": true,
    "bAutoWidth": false,
    "oLanguage": olang,
    "aoColumns": [{
    "sWidth": "10%",
    "sType": "html"
    }, {
    "sWidth": "50%",
    "sType": "html"
    }, {
    "sWidth": "20%",
    "sType": "html"
    }, {
    "sWidth": "10%",
    "sType": "html"
    }, {
    "sWidth": "10%",
    "sType": "html"
    }],
    "sPaginationType": "full_numbers"
    });
    [/code]
  • cescribanocescribano Posts: 1Questions: 0Answers: 0
    the same from 1.7.1 to 1.7.3
  • allanallan Posts: 61,446Questions: 1Answers: 10,054 Site admin
    Are you able to link us to an example so I can profile it? It's surprising that 1.7.x is slower than 1.6.x.

    Allan
This discussion has been closed.