Upgrade from 1.5 to 1.8
Upgrade from 1.5 to 1.8
mv5492
Posts: 10Questions: 0Answers: 0
Hi Allan,
I just upgraded from 1.5 to 1.8 and with no changes at all to the following code I'm getting the following error message (IE8) and jquery 1.7: "Object does not support this property or method" on line 239
I can't see anything not supported below, can you? Changing it back to 1.5 makes it all work fine.
Many thanks. Mike
[code]
$(document).ready( function () {
$('#dtexample').dataTable( { //LINE 239
"bAutoWidth": false,
"bServerSide": false,
"bProcessing": true,
"sPaginationType": "full_numbers",
"sAjaxSource": "./table_ctrl.cgi?system=" + sys,
"iDisplayLength": 15,
"sDom": '<"top"f>rt<"bottom"ip><"clear">',
"aoColumns" : [
{ sWidth: '150px' },
{ sWidth: '150px' },
{ sWidth: '120px' },
{ sWidth: '800px' }
],
"fnInitComplete": function() {
var SYS = sys.toUpperCase();
$(loading).replaceWith("" + SYS + " Content Management");
}
} );
} );
[/code]
I just upgraded from 1.5 to 1.8 and with no changes at all to the following code I'm getting the following error message (IE8) and jquery 1.7: "Object does not support this property or method" on line 239
I can't see anything not supported below, can you? Changing it back to 1.5 makes it all work fine.
Many thanks. Mike
[code]
$(document).ready( function () {
$('#dtexample').dataTable( { //LINE 239
"bAutoWidth": false,
"bServerSide": false,
"bProcessing": true,
"sPaginationType": "full_numbers",
"sAjaxSource": "./table_ctrl.cgi?system=" + sys,
"iDisplayLength": 15,
"sDom": '<"top"f>rt<"bottom"ip><"clear">',
"aoColumns" : [
{ sWidth: '150px' },
{ sWidth: '150px' },
{ sWidth: '120px' },
{ sWidth: '800px' }
],
"fnInitComplete": function() {
var SYS = sys.toUpperCase();
$(loading).replaceWith("" + SYS + " Content Management");
}
} );
} );
[/code]
This discussion has been closed.
Replies
Allan
Mike