Datatables doesn't load data in IE

Datatables doesn't load data in IE

tpepernictpepernic Posts: 12Questions: 0Answers: 0
edited January 2013 in DataTables 1.9
I've been using 1.8 and everything is great but now I tried to upgrade to 1.9. The data doesn't seem to load. I create a table from a database on page load. It just says: "No data available in table". If I view source the table is there. My code:

jQuery('#webcam-table').dataTable({
"sPaginationType": "full_numbers",
"bStateSave": true,
"aaSorting": [[1,"desc"]],
"aoColumnDefs": [
{ "bSortable": false, "aTargets": [ 4 ] }
]
});

Works fine in FF and Chrome but not in IE 8 or 9. Any ideas?

Replies

  • tpepernictpepernic Posts: 12Questions: 0Answers: 0
    Scratch the question. The problem is a poorly formatted table. Unfortunately I found a limitation with my implementation that forced me to put a form in the table. Not valid format but IE is okay with this but not datatables, which makes sense. I'll have to find a way around this.
This discussion has been closed.