fnAddData not working on IE
fnAddData not working on IE
Hello people, Ive been using this wonderful plugin on a project of mine with great result.
Problem is, the project is destined to be used on Internet Explorer(sadly nothing I can do about it).
Now, on firefox, this code will work fine and add a new row to my table.
[code]
$(Document).ready(function() {
var medTable = $('#testtable').dataTable( {
"aoColumnDefs": [ { "sClass": "updateableData", "aTargets": ["_all"] } ],
"bJQueryUI": true,
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
"bSort": false,
"bInfo": false,
"bAutoWidth": false
} );
medTable.fnAddData(["test"],true);
[/code]
When I load the page on firefox, I see the test row fine, but on IE, it's simply not there.
Whats going on :S
Problem is, the project is destined to be used on Internet Explorer(sadly nothing I can do about it).
Now, on firefox, this code will work fine and add a new row to my table.
[code]
$(Document).ready(function() {
var medTable = $('#testtable').dataTable( {
"aoColumnDefs": [ { "sClass": "updateableData", "aTargets": ["_all"] } ],
"bJQueryUI": true,
"bPaginate": false,
"bLengthChange": false,
"bFilter": false,
"bSort": false,
"bInfo": false,
"bAutoWidth": false
} );
medTable.fnAddData(["test"],true);
[/code]
When I load the page on firefox, I see the test row fine, but on IE, it's simply not there.
Whats going on :S
This discussion has been closed.
Replies
Allan
Allan