Search and Top Navigation
#4907 closed bug (notabug)
Opened October 12, 2009 10:16AM UTC
Closed November 16, 2009 09:42AM UTC
Last modified October 11, 2012 09:15PM UTC
Accordion does not display tab contents when contents are a table. IE8
Reported by: | sukerman | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | ui.core | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Accordion does not show contents of the tabs if they are in a table in IE8.
This works :
<div id='accordion'>
<h3>Contact Details</h3>
<div><p>Hello</p></div>
<h3>Groups</h3>
<div><p>Hello</p></div>
<h3>Account</h3>
<div><p>Hello</p></div>
<h3>Permissions</h3>
<div><p>Hello</p></div>
<h3>FTP Account</h3>
<div><p>Hello</p></div>
</div>
This does not work:
<div id='accordion'>
<h3>Contact Details</h3>
<div><p><table><tr><td>Hello</td></tr></table></p></div>
<h3>Groups</h3>
<div><p><table><tr><td>Hello</td></tr></table></p></div>
<h3>Account</h3>
<div><p><table><tr><td>Hello</td></tr></table></p></div>
<h3>Permissions</h3>
<div><p><table><tr><td>Hello</td></tr></table></p></div>
<h3>FTP Account</h3>
<div><p><table><tr><td>Hello</td></tr></table></p></div>
</div>
I've sorted this. Kind of... You must remember to include a DOCTYPE at the begininng of your document, otherwise IE8 goes into quirks mode and this fails as described, but in standards mode its ok.