Upgraded from 1.6.2 to 1.7.3
Upgraded from 1.6.2 to 1.7.3
mcoolin
Posts: 4Questions: 0Answers: 0
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.
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.
This discussion has been closed.
Replies
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]
Allan