#4907 closed bug (notabug)
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>
Change History (3)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
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.