Nested table not displaying in ie7

darkagent

New Member
I have a nested table inside a table which is \[code\]nestedTable\[/code\] and it does not show up in \[code\]ie 7\[/code\] even though it exists in the html and display is not none. Below is my html which seems to be valid and working in firefox, chrome and ie8\[code\]<table id="myTable"> <thead> ... </thead> <tbody class="myTbody1"> <tr class="details"> <td> <table id="nestedTable"> <thead> <tr> <th> Col1 </th> <th> Col2 </th> </tr> </thead> <tbody class="head"> <tr class="nestedRow"> <td> Data</td> <td> Data</td> </tr> </tbody> </table> </td> </tr> </tbody> <tbody class="myTbody2">..</tbody> <tbody class="myTbody3">..</tbody> </table>\[/code\]
 
Back
Top