IE6 + IE7 table blank - other controls visible

IE6 + IE7 table blank - other controls visible

dizeedizee Posts: 2Questions: 0Answers: 0
edited July 2009 in General
The page is not displaying the table in IE6 + IE7 - but the controls are showing. I thought maybe the doctype was wrong, so I changed it to what was in the examples, but that just made the entire thing go away... any ideas?

[code]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">


History






$(document).ready(function() {
$('#grid-sort').dataTable({
"aaSorting": [[ 0, "asc" ]],
"bSort": true,
"bPaginate": true,
"bProcessing": false,
"bSort": true,
"iDisplayLength": 10,
"sPaginationType": "full_numbers"
});
} );


















Project
From
To
Status
Started

Completed



Another cool thing
California
Canada
Failed

07-21-2009 11:47:30 PM
07-21-2009 11:48:53 PM


Cool thing
California
Canada

Complete
07-21-2009 11:42:10 PM
07-21-2009 11:47:08 PM

...








[/code]

Replies

  • allanallan Posts: 61,451Questions: 1Answers: 10,055 Site admin
    Odd... I don't see anything specifically wrong with that. Do you get any Javascript errors or anything showing up? Also, is this available on the web somewhere that I can try it with IE?

    One thing to note is that DataTables doesn't currently support the colgroup tab - nothing bad will happen if you use it (at least that should be the case!) but it won't actually do anything with it.

    Regards,
    Allan
  • dizeedizee Posts: 2Questions: 0Answers: 0
    It was because I removed the min-heights from the wrapper! OOOOPS! :) All is good now! Thanks!
This discussion has been closed.